From 274f0a5bc0a8d6603681b540d08ec375767db6a7 Mon Sep 17 00:00:00 2001 From: masquevil Date: Sun, 17 Mar 2024 02:01:31 +0800 Subject: [PATCH] [shell] bug fix --- shell/copy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/copy.sh b/shell/copy.sh index a524c62..b5acd15 100755 --- a/shell/copy.sh +++ b/shell/copy.sh @@ -3,5 +3,5 @@ for file in src/local/*.example.ts do - cp "$file" "${file//.example.ts/.1.ts}" + cp "$file" "${file//.example.ts/.ts}" done