diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-12 23:29:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 23:29:51 +0100 |
commit | 2fc2d4643ee699b8efc97f23850d5a37c4a85b89 (patch) | |
tree | a46a03036da7eb12776c18632024d8a6efc81456 /hack | |
parent | a65ecc70c21eb5eef7d7a6b70cc1f90e577bb72e (diff) | |
parent | a7431003b8d53b3cc012a74c4015beac624f40f1 (diff) | |
download | podman-2fc2d4643ee699b8efc97f23850d5a37c4a85b89.tar.gz podman-2fc2d4643ee699b8efc97f23850d5a37c4a85b89.tar.bz2 podman-2fc2d4643ee699b8efc97f23850d5a37c4a85b89.zip |
Merge pull request #8316 from rhatdan/codespell
Fix issues found with codespell
Diffstat (limited to 'hack')
-rwxr-xr-x | hack/get_ci_vm.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hack/get_ci_vm.sh b/hack/get_ci_vm.sh index f8c7e792e..0755470a2 100755 --- a/hack/get_ci_vm.sh +++ b/hack/get_ci_vm.sh @@ -7,7 +7,7 @@ # problems specifically related to Cirrus-CI automated testing. However, # because it's only loosely coupled to the `.cirrus.yml` configuration, it must # orchestrate VMs in GCP directly. This means users need to have -# pre-authorization (access) to manipulate google-cloud resoures. Additionally, +# pre-authorization (access) to manipulate google-cloud resources. Additionally, # there are no guarantees it will remain in-sync with other automation-related # scripts. Therefore it may not always function for everybody in every # future scenario without updates/modifications/tweaks. @@ -149,7 +149,7 @@ parse_args(){ VM_IMAGE_NAME="$1" - # Word-splitting is desireable in this case + # Word-splitting is desirable in this case # shellcheck disable=SC2207 ENVS=( $(get_env_vars) @@ -166,7 +166,7 @@ parse_args(){ } # Returns true if user has run an 'init' and has a valid token for -# the specific project-id and named-configuration argumens in $PGCLOUD. +# the specific project-id and named-configuration arguments in $PGCLOUD. function has_valid_credentials() { if $PGCLOUD info |& grep -Eq 'Account:.*None'; then return 1 |