From cf9e6dbf152ec05a08a4024ea3be0e4665c66ce8 Mon Sep 17 00:00:00 2001
From: anon <anon@anon.anon>
Date: Tue, 3 Oct 2023 15:02:11 +0200
Subject: [PATCH] fixed critical bug cropping the command ran

---
 shake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shake b/shake
index 041bd22..484f903 100755
--- a/shake
+++ b/shake
@@ -44,7 +44,7 @@ fi
 
 line=$(grep "$MARK" "$input_file")
 line=${line//\$@/$input_file}
-line=${line//\$*/${input_file%.*}}
+line=${line//\$\*/${input_file%.*}}
 
 if [[ -n $line ]]; then
     command="${line#*@COMPILECMD }"