diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-10-09 14:36:01 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-10-09 16:23:08 +0200 |
commit | 0aacfa43c16af307ad154d9fbc5dade80f6f88d5 (patch) | |
tree | e71d8f61f0c1d643d8735b418451a96eee4ded88 /contrib/verify-commits | |
parent | 68feb49105a9a473cf97dc2eb67e9370051d9ca6 (diff) |
Remove accidental stray semicolon
Diffstat (limited to 'contrib/verify-commits')
-rwxr-xr-x | contrib/verify-commits/verify-commits.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/verify-commits/verify-commits.sh b/contrib/verify-commits/verify-commits.sh index 74b7f38375..7194b040eb 100755 --- a/contrib/verify-commits/verify-commits.sh +++ b/contrib/verify-commits/verify-commits.sh @@ -39,7 +39,7 @@ PREV_COMMIT="" while true; do if [ "$CURRENT_COMMIT" = $VERIFIED_ROOT ]; then echo "There is a valid path from "$CURRENT_COMMIT" to $VERIFIED_ROOT where all commits are signed!" - exit 0; + exit 0 fi if [ "$CURRENT_COMMIT" = $VERIFIED_SHA512_ROOT ]; then |