From 6214be9525bf5085e2b9bd3cf5a6a2f493b652c8 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 23 Nov 2025 13:51:49 +0000 Subject: [PATCH] fix: added -i -e to sed ./justfile --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 6b0fc5a4..c4d5a10d 100644 --- a/justfile +++ b/justfile @@ -39,7 +39,7 @@ release-windows: build initialize-template projectname: # Initializing Template {{projectname}} sed -i -e "s/PROJECT/{{projectname}}/g" ./modules/PROJECT/register_types.h ./modules/PROJECT/register_types.cpp ./project/project.godot ./project/export_presets.cfg .gitignore - sed "s/change_me/{{projectname}}/" ./justfile + sed -i -e "s/change_me/{{projectname}}/" ./justfile mv ./modules/PROJECT ./modules/{{projectname}} # Done Initializing, you will still have to update BUILD_NAME in your justfile