From fca71cac64f8b2315e544abbbfece3ca3353b2ce Mon Sep 17 00:00:00 2001 From: Martin O'Leary Date: Wed, 20 Nov 2024 13:50:12 +0000 Subject: [PATCH] CAN-16: fix syntax for justfile --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 26000bd..416212c 100644 --- a/justfile +++ b/justfile @@ -149,7 +149,7 @@ generate-cicd TARGET_DIR FLAG="": cp ./generate/.openapi-generator-ignore ./generate/.output/.openapi-generator-ignore # Basic check if file exists if [ -f "./generate/templates/description.{{APPLICATION_NAME}}.mustache" ]; then \ - cp ./generate/templates/description.{{APPLICATION_NAME}}.mustache ./generate/templates/description.mustache; + cp ./generate/templates/description.{{APPLICATION_NAME}}.mustache ./generate/templates/description.mustache; \ else \ echo "[INTERNAL] FINBOURNE Technology {{APPLICATION_NAME}} SDK" > ./generate/templates/description.mustache; \ echo "[INFO] No description template found for {{APPLICATION_NAME}} - if this is an external facing SDK - add ./generate/templates/description.{{APPLICATION_NAME}}.mustache to this project ASAP";\