From 5ff6e0b6187cab762170c34a2a7ed82a4b49926c Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 17 Mar 2021 18:15:09 -0700 Subject: [PATCH] ;make copy-bins-to-X: use period instead of hyphen --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eeacce923..1e6fd91ee 100644 --- a/Makefile +++ b/Makefile @@ -427,7 +427,7 @@ ghci-shake: $(call def-help,ghci-shake, start ghci REPL on Shake.hs) stack exec $(SHAKEDEPS) -- ghci Shake.hs copy-bins-to-%: $(call def-help,copy-bins-to-VER, save ~/.local/bin/hledger* as hledger*-VER) - V=$*; for B in $(BINARIES); do cp ~/.local/bin/$$B ~/.local/bin/$$B-$$V; done + V=$*; for B in $(BINARIES); do cp ~/.local/bin/$$B ~/.local/bin/$$B.$$V; done ############################################################################### $(call def-help-subheading,TESTING:)