From 94a49e57f1a0828c6c61261778902cb0979c39e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Fri, 22 Nov 2024 10:09:53 +0100 Subject: [PATCH] Fix deploy script is not interactive (#8668) The 1-click install did not ask questions anymore, let's try removing the S flag --- packages/twenty-docker/scripts/1-click.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/twenty-docker/scripts/1-click.sh b/packages/twenty-docker/scripts/1-click.sh index 2e5f93572..6bacb7559 100644 --- a/packages/twenty-docker/scripts/1-click.sh +++ b/packages/twenty-docker/scripts/1-click.sh @@ -6,7 +6,7 @@ target_version="0.32.4" # We moved the install script to a different location in v0.32.4 if [[ -n "$BRANCH" ]] || [[ "$(printf '%s\n' "$target_version" "$version_num" | sort -V | head -n1)" != "$version_num" ]]; then - curl -sL "https://raw.githubusercontent.com/twentyhq/twenty/$pull_branch/packages/twenty-docker/scripts/install.sh" | bash -s -- "$VERSION" "$BRANCH" + curl -sL "https://raw.githubusercontent.com/twentyhq/twenty/$pull_branch/packages/twenty-docker/scripts/install.sh" | bash -- "$VERSION" "$BRANCH" else - curl -sL "https://raw.githubusercontent.com/twentyhq/twenty/$pull_branch/install.sh" | bash -s -- "$VERSION" "$BRANCH" + curl -sL "https://raw.githubusercontent.com/twentyhq/twenty/$pull_branch/install.sh" | bash -- "$VERSION" "$BRANCH" fi