From cf7688dc74b96d4b7fb01634b7705ab3af5c3b97 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Thu, 11 Jan 2024 21:16:34 +0300 Subject: [PATCH] fix: remove create flag --- push_template.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/push_template.sh b/push_template.sh index e209ff2..b737481 100755 --- a/push_template.sh +++ b/push_template.sh @@ -19,11 +19,6 @@ if [ -n "${CODER_TEMPLATE_MESSAGE}" ]; then push_command+=" --message \"${CODER_TEMPLATE_MESSAGE}\"" fi -# Append --create flag to the push command if CODER_TEMPLATE_CREATE is true -if [ "${CODER_TEMPLATE_CREATE}" = "true" ]; then - push_command+=" --create" -fi - # Add version to the push command if specified if [ -n "${CODER_TEMPLATE_VERSION_NAME}" ]; then push_command+=" --name ${CODER_TEMPLATE_VERSION_NAME}"