Skip to content

Commit 9a2e85e

Browse files
zimegClaude
andcommitted
fix: bump Linux arch-detection version gate to 4.2.0
4.1.0 is already released without arch-specific Linux archives, so the gate needs to target 4.2.0 when they'll first be available. Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
1 parent c6966ef commit 9a2e85e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/install-dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ install_slack_cli() {
144144
esac
145145
fi
146146
elif [ "$(expr substr "$(uname -s)" 1 5)" == "Linux" ]; then
147-
if version_lt "$SLACK_CLI_DEV_VERSION" "4.1.0"; then
147+
if version_lt "$SLACK_CLI_DEV_VERSION" "4.2.0"; then
148148
slack_cli_url="https://downloads.slack-edge.com/slack-cli/slack_cli_${SLACK_CLI_DEV_VERSION}_linux_64-bit.tar.gz"
149149
else
150150
case "$(uname -m)" in

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ install_slack_cli() {
146146
esac
147147
fi
148148
elif [ "$(expr substr "$(uname -s)" 1 5)" == "Linux" ]; then
149-
if version_lt "$SLACK_CLI_VERSION" "4.1.0"; then
149+
if version_lt "$SLACK_CLI_VERSION" "4.2.0"; then
150150
slack_cli_url="https://downloads.slack-edge.com/slack-cli/slack_cli_${SLACK_CLI_VERSION}_linux_64-bit.tar.gz"
151151
else
152152
case "$(uname -m)" in

0 commit comments

Comments
 (0)