Skip to content

Commit

Permalink
Fix deploy script is not interactive (#8668)
Browse files Browse the repository at this point in the history
The 1-click install did not ask questions anymore, let's try removing
the S flag
  • Loading branch information
FelixMalfait authored Nov 22, 2024
1 parent 62df0f0 commit 94a49e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/twenty-docker/scripts/1-click.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 94a49e5

Please sign in to comment.