Skip to content
Snippets Groups Projects
Commit ca5781ac authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

release script: Fix quoting.

parent c237fe7e
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ if { git diff-index --exit-code HEAD -- >&6 && \
git ls-files --other --directory --exclude-standard >&6 && \
logsize2=$(stat --format '%s' "${log}" 2>/dev/null \
|| stat -f '%z' "${log}") && \
[[ $logsize1 = $logsize2 ]] ; } ; then
[[ "$logsize1" = "$logsize2" ]] ; } ; then
echo 'success: no unexpected files were created/modified.' >&2
exit 0
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment