From f08c0bc4e00b0ec0aa09207d7d96d27a98af92f0 Mon Sep 17 00:00:00 2001 From: "Lockszmith (@Kateryna)" Date: Sun, 16 Mar 2025 00:10:44 -0400 Subject: [PATCH] Repair git update macro --- _bin/rtpctl.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_bin/rtpctl.d b/_bin/rtpctl.d index cc0974d..7f79547 100755 --- a/_bin/rtpctl.d +++ b/_bin/rtpctl.d @@ -350,7 +350,7 @@ case "${1}" in ;; git) GIT_ARGS="$( printf '"%s" ' "${@:2}" )" - [ "$GIT_ARGS" != '"update"' ] || GIT_ARGS="pull --rebase --autostash" + [ "$GIT_ARGS" != '"update" ' ] || GIT_ARGS="pull --rebase --autostash" exec sh -c 'cd user-config && git '"${GIT_ARGS}"'; exit $?' ;; _load)