Bugfix build.sh: fix shellcheck error

This commit is contained in:
Starbeamrainbowlabs 2021-09-11 01:14:28 +01:00
parent a3c0f04668
commit 874f703c39
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -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