From c25a347a74d8e5e098f19afa2341be2747652383 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 8ede42d4..3f96c88d 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