Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bot/scripts/restart-bot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ _pred_running_pid() {
}

validate_plist() {
log "Validating plist at $BOT_PLIST…"
log "Validating plist at ${BOT_PLIST}…"
if ! "$PLUTIL_BIN" -lint "$BOT_PLIST" >/dev/null 2>&1; then
err "plist is malformed: $BOT_PLIST"
err "run: $PLUTIL_BIN -lint \"$BOT_PLIST\" for details"
Expand Down Expand Up @@ -246,7 +246,7 @@ plist_restart() {
log "Service not currently registered; skipping bootout."
fi

log "Bootstrapping from $BOT_PLIST…"
log "Bootstrapping from ${BOT_PLIST}…"
if ! "$LAUNCHCTL_BIN" bootstrap "$DOMAIN" "$BOT_PLIST"; then
err "launchctl bootstrap failed"
return 1
Expand Down
Loading