From 5f633ff3af4f024df7b2f9172e25322259341bf3 Mon Sep 17 00:00:00 2001 From: Sara Gerretsen Date: Wed, 3 Sep 2025 22:13:14 +0200 Subject: [PATCH] fix: swapped order of modifying justfile and move file command --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index b875c55..3417206 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ set-project-name projectname: sed -i "s/CHANGEME/{{projectname}}/g" ./CMakeLists.txt ./src/CMakeLists.txt ./justfile - sed -i "s/CHANGEME.cpp/{{projectname}}.cpp/g" ./justfile mv ./src/CHANGEME.cpp ./src/{{projectname}}.cpp + sed -i "s/CHANGEME.cpp/{{projectname}}.cpp/g" ./justfile