Skip to content

Commit

Permalink
Fix #524: use v0.7.1 in bootstrap.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Aug 7, 2015
1 parent 2dcf676 commit 244d25b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ if [ ! -f "/opt/redash/.env" ]; then
fi

# Install latest version
REDASH_VERSION=${REDASH_VERSION-0.6.3.b906}
LATEST_URL="https://github.com/EverythingMe/redash/releases/download/v${REDASH_VERSION}/redash.$REDASH_VERSION.tar.gz"
REDASH_VERSION=${REDASH_VERSION-0.7.1.b1011}
#LATEST_URL="https://github.com/EverythingMe/redash/releases/download/v${REDASH_VERSION}/redash.$REDASH_VERSION.tar.gz"
# Use explicit path until we switch to using release version again instead of RC.
LATEST_URL="https://github.com/EverythingMe/redash/releases/download/v0.7.1-rc/redash.0.7.1.b1011.tar.gz"
VERSION_DIR="/opt/redash/redash.$REDASH_VERSION"
REDASH_TARBALL=/tmp/redash.tar.gz
REDASH_TARBALL=/tmp/redash.tar.gz

if [ ! -d "$VERSION_DIR" ]; then
sudo -u redash wget $LATEST_URL -O $REDASH_TARBALL
Expand Down

0 comments on commit 244d25b

Please sign in to comment.