Skip to content

Commit b30999c

Browse files
committed
Fix quotes
1 parent 2ab98ba commit b30999c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/ghe-progress renamed to bin/ghe-backup-progress

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
#/ Usage: ghe-progress [--once]
2+
#/ Usage: ghe-backup-progress [--once]
33
#/ Tracks the completed steps of a backup or restore operation.
44
#/
55
#/ By default the progress is printed every continuously or until a key is pressed.
@@ -32,7 +32,7 @@ done
3232

3333
check_for_progress_file() {
3434
if [ ! -f /tmp/backup-utils-progress-info ]; then
35-
echo "No progress file found. has a backup or restore been started?"
35+
echo "No progress file found. Has a backup or restore been started?"
3636
exit 1
3737
fi
3838
}

bin/ghe-restore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ fi
505505
cmd_title=$(log_info "Restoring Redis database ...")
506506
commands=("
507507
echo \"$cmd_title\"
508-
ghe-restore-redis \"$GHE_HOSTNAME\")
508+
ghe-restore-redis \"$GHE_HOSTNAME\"")
509509

510510
cmd_title=$(log_info "Restoring Git Repositories ...")
511511
commands+=("
@@ -525,7 +525,7 @@ ghe-restore-pages \"$GHE_HOSTNAME\" 1>&3")
525525
cmd_title=$(log_info "Restoring SSH authorized keys ...")
526526
commands+=("
527527
echo \"$cmd_title\"
528-
ghe-restore-ssh-keys \"$GHE_HOSTNAME\" \"$GHE_RESTORE_SNAPSHOT_PATH\")
528+
ghe-restore-ssh-keys \"$GHE_HOSTNAME\" \"$GHE_RESTORE_SNAPSHOT_PATH\"")
529529

530530
cmd_title=$(log_info "Restoring storage data ...")
531531
commands+=("

0 commit comments

Comments
 (0)