From 7a771b99a815f7ae9d15a0d33bcae358738a94b1 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 3 Sep 2025 21:35:48 +0200 Subject: [PATCH] fix: added '-i' flag to the `sed ./justfile` --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index ad0c5d09..771b7564 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 "s/mygame/{{projectname}}/" ./justfile mv ./modules/PROJECT ./modules/{{projectname}} # Done Initializing, you will still have to update BUILD_NAME in your justfile