From 7808611cbb879abbe3b022d41617aa21412a428a Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Fri, 11 Jul 2025 08:22:42 -0500 Subject: [PATCH] fix delstash --- common/general/shell/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/general/shell/common.sh b/common/general/shell/common.sh index 8ede42d..3f96c88 100644 --- a/common/general/shell/common.sh +++ b/common/general/shell/common.sh @@ -175,7 +175,7 @@ delstash() { local stash_ref stash_ref=$(echo "$selection" | awk -F: '{print $1}') echo "About to delete $stash_ref." - git stash drop "$stash_ref";; + git stash drop "$stash_ref" } # nix