From d0c3f534f8f4528a31d177ab669b7cc3f360ba93 Mon Sep 17 00:00:00 2001 From: Jess Bees Date: Tue, 22 Mar 2022 13:26:23 -0400 Subject: [PATCH] Unrelated: fix a pair of shellcheck lints --- bin/record_expected_output | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/record_expected_output b/bin/record_expected_output index d90ab1f..3cc496f 100755 --- a/bin/record_expected_output +++ b/bin/record_expected_output @@ -5,9 +5,9 @@ if [ "local" = "$1" ]; then export PAGES_REPO_NWO=actions/jekyll-build-pages export JEKYLL_BUILD_REVISION=JEKYLL_BUILD_REVISION - for dir in $(ls test_projects) + for dir in test_projects/* do - bundle exec github-pages build --verbose -s test_projects/$dir -d test_projects/$dir/_expected + bundle exec github-pages build --verbose -s "$dir" -d "$dir/_expected" done else act -b -s GITHUB_TOKEN -j record-expected-output