Add some debug output

This commit is contained in:
2024-11-04 14:06:20 -05:00
parent 711ee5621a
commit 09031480c2

View File

@@ -1552,6 +1552,7 @@ update() {
before_pull_hash=$(git -C "$SCRIPT_DIR" rev-parse HEAD) before_pull_hash=$(git -C "$SCRIPT_DIR" rev-parse HEAD)
# Run a git stash in case there are local changes # Run a git stash in case there are local changes
execute git -C "$SCRIPT_DIR" stash --quiet execute git -C "$SCRIPT_DIR" stash --quiet
debug "git -C $SCRIPT_DIR pull"
if git -C "$SCRIPT_DIR" pull | grep -qv "Already up to date"; then if git -C "$SCRIPT_DIR" pull | grep -qv "Already up to date"; then
return 0 return 0
fi fi
@@ -1575,7 +1576,7 @@ update() {
execute rm -f "$tmp" execute rm -f "$tmp"
fi fi
echo "installJRMC updated, restarting" echo "Detected installJRMC update, restarting"
exec "$SCRIPT_PATH" "$@" "--no-update" exec "$SCRIPT_PATH" "$@" "--no-update"
} }