1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-01 22:03:02 +00:00

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

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")"; 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 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; continue;
fi fi
fi fi