mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Bugfix build.sh: fix shellcheck error
This commit is contained in:
parent
a3c0f04668
commit
874f703c39
1 changed files with 1 additions and 1 deletions
2
build.sh
2
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")";
|
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
|
||||||
|
|
Loading…
Reference in a new issue