diff options
| author | practicalswift <[email protected]> | 2017-10-18 07:34:25 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-10-18 17:10:23 +0200 |
| commit | 13a81b19df7acff51187655bb755f1371f9c83ca (patch) | |
| tree | bde5b2a70b724f8c020d6eab54f7206ec7caba35 | |
| parent | Fix valid path output (diff) | |
| download | discoin-13a81b19df7acff51187655bb755f1371f9c83ca.tar.xz discoin-13a81b19df7acff51187655bb755f1371f9c83ca.zip | |
Add quotes to variable assignment (as requested by @TheBlueMatt)
| -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 9ba01791a..78320a4ce 100755 --- a/contrib/verify-commits/verify-commits.sh +++ b/contrib/verify-commits/verify-commits.sh @@ -33,7 +33,7 @@ fi NO_SHA1=1 PREV_COMMIT="" -INITIAL_COMMIT=${CURRENT_COMMIT} +INITIAL_COMMIT="${CURRENT_COMMIT}" while true; do if [ "$CURRENT_COMMIT" = $VERIFIED_ROOT ]; then |