From 9a5187ef67f5117b69e132f313878cf2091a4cce Mon Sep 17 00:00:00 2001 From: Miguel Laginha Date: Tue, 16 Jan 2024 10:24:05 +0000 Subject: [PATCH] fix: removed invalid flags --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 585f910a..997c57dd 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -40,7 +40,7 @@ fi if ! flyctl status --app "$app"; then # Backup the original config file since 'flyctl launch' messes up the [build.args] section cp "$config" "$config.bak" - flyctl apps create --copy-config --name "$app" --image "$image" --region "$region" --org "$org" + flyctl apps create --name "$app" --org "$org" # Restore the original config file cp "$config.bak" "$config" fi