Skip to content

Commit 2e24556

Browse files
committed
fixed unary operator expected error
1 parent f285db2 commit 2e24556

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

deploy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ setup() {
215215
test $? -eq 0 || abort setup paths failed
216216
log running setup
217217
log cloning $repo
218-
if test $fetch != "fast"; then
218+
if test "$fetch" != "fast"; then
219219
log "full fetch"
220220
run "git clone --branch $branch $repo $path/source"
221221
else
@@ -259,7 +259,7 @@ deploy() {
259259
# fetch source
260260
log fetching updates
261261

262-
if test $fetch != "fast"; then
262+
if test "$fetch" != "fast"; then
263263
log "full fetch"
264264
run "cd $path/source && git fetch --all --tags"
265265
else

0 commit comments

Comments
 (0)