Skip to content

Commit

Permalink
chore: Fix shellcheck warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Dec 13, 2022
1 parent 70dc5e6 commit 8e9ed2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/docker/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eufo pipefail

cd ../..
for distribution in "$@"; do
echo ${distribution}
echo "${distribution}"
dockerfile="assets/docker/${distribution}.Dockerfile"
if [ ! -f "${dockerfile}" ]; then
echo "${dockerfile} not found"
Expand Down
2 changes: 1 addition & 1 deletion assets/vagrant/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -eufo pipefail

for os in "$@"; do
echo ${os}
echo "${os}"
if [ ! -f "${os}.Vagrantfile" ]; then
echo "${os}.Vagrantfile not found"
exit 1
Expand Down

0 comments on commit 8e9ed2e

Please sign in to comment.