diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-05 15:50:57 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-05 15:50:59 -0400 |
commit | 0d1ebc180ec7f6c1b096cbe936c0925402119482 (patch) | |
tree | b4980ca67df9e1c10625dcf2d159105175be9f44 /contrib | |
parent | 404bc2684edd14b20d02d8cd05ca3e6b6ee8888d (diff) | |
download | podman-0d1ebc180ec7f6c1b096cbe936c0925402119482.tar.gz podman-0d1ebc180ec7f6c1b096cbe936c0925402119482.tar.bz2 podman-0d1ebc180ec7f6c1b096cbe936c0925402119482.zip |
codespell cleanup
[NO TESTS NEEDED] This is just running codespell on podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/dependabot-dance | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/dependabot-dance b/contrib/dependabot-dance index 3cf740753..8261dd143 100755 --- a/contrib/dependabot-dance +++ b/contrib/dependabot-dance @@ -55,8 +55,8 @@ function branch_dance() { echo echo "Commit author is '$author' (expected 'dependabot')" echo -n "Continue? [y/N] " - read ans - case "$ans" in + read answer + case "$answer" in [yY]*) ;; *) exit 1;; esac |