File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ setup_test_data () {
300300
301301 if [ " $loc " != " $GHE_REMOTE_DATA_USER_DIR " ]; then
302302 # create a fake backups for each datastore
303- if ! " $SKIP_MYSQL " ; then
303+ if ! $SKIP_MYSQL ; then
304304 echo " fake ghe-export-mysql data" | gzip > " $loc /mysql.sql.gz"
305305 fi
306306 echo " fake ghe-export-redis data" > " $loc /redis.rdb"
@@ -365,7 +365,7 @@ verify_all_backedup_data() {
365365 [ " $( cat " $GHE_DATA_DIR /current/settings.json" ) " = " fake ghe-export-settings data" ]
366366
367367 # check that mysql data was backed up
368- if ! " $SKIP_MYSQL " ; then
368+ if ! $SKIP_MYSQL ; then
369369 [ " $( gzip -dc < " $GHE_DATA_DIR /current/mysql.sql.gz" ) " = " fake ghe-export-mysql data" ]
370370 fi
371371
@@ -410,7 +410,7 @@ verify_all_restored_data() {
410410 set -e
411411
412412 # verify all import scripts were run
413- if ! " $SKIP_MYSQL " ; then
413+ if ! $SKIP_MYSQL ; then
414414 grep -q " fake ghe-export-mysql data" " $TRASHDIR /restore-out"
415415 fi
416416 grep -q " fake ghe-export-redis data" " $TRASHDIR /restore-out"
You can’t perform that action at this time.
0 commit comments