From 45dc065a7c7a3cdc5d8bde62792685656d8a9f9f Mon Sep 17 00:00:00 2001 From: Evan Smith Date: Sun, 25 Aug 2024 17:31:59 +0100 Subject: [PATCH] Fix: Echo error message --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d99cc98..32b4ddc 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ prepare:: @if test -z "${NAME}"; then echo "NAME not set"; exit 1; fi @if test -z "${REPOSITORY}"; then echo "REPOSITORY not set"; exit 1; fi @if test -z "${ORG}"; then echo "ORG not set"; exit 1; fi - @if test ! -d "provider/cmd/pulumi-tfgen-x${EMPTY_TO_AVOID_SED}yz"; then "Project already prepared"; exit 1; fi + @if test ! -d "provider/cmd/pulumi-tfgen-x${EMPTY_TO_AVOID_SED}yz"; then echo "Project already prepared"; exit 1; fi mv "provider/cmd/pulumi-tfgen-x${EMPTY_TO_AVOID_SED}yz" provider/cmd/pulumi-tfgen-${NAME} mv "provider/cmd/pulumi-resource-x${EMPTY_TO_AVOID_SED}yz" provider/cmd/pulumi-resource-${NAME}