From 57a18ebef775d713181094c8864c1764e062a449 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 12 Nov 2025 11:26:21 +0100 Subject: [PATCH] fix: added -i -e to justfile sed command --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index ad0c5d09..ee6db56e 100644 --- a/justfile +++ b/justfile @@ -37,7 +37,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