From 874f703c396fa5833cc7cfdb3a4ea5a88340269b Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 11 Sep 2021 01:14:28 +0100 Subject: [PATCH] Bugfix build.sh: fix shellcheck error --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 04545ab..459ac8b 100755 --- a/build.sh +++ b/build.sh @@ -178,7 +178,7 @@ AWK old_hash="$(jq --raw-output --arg theme_id "${theme_id}" '.[] | select(.id == $theme_id).hash' <"themes/themeindex.json")"; # If the hash is the same as last time, don't bother to retake the screenshot - if [[ "${hash}" = "${hash_old}" ]]; then + if [[ "${hash}" = "${old_hash}" ]]; then continue; fi fi