Skip to content

Commit 731f842

Browse files
committed
fix(install-v2.sh) remove the extra quote bug on script
1 parent 8af9d28 commit 731f842

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

install-v2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ EOF
3535
PLATFORM="$(uname | tr '[:upper:]' '[:lower:]')"
3636
ARCH="$(uname -m)"
3737
# https://storage.googleapis.com/hephy-workflow-cli-release/v2.18.0/deis-v2.18.0-darwin-386
38-
DEIS_BIN_URL_BASE="https://storage.googleapis.com/hephy-workflow-cli-release""
38+
DEIS_BIN_URL_BASE="https://storage.googleapis.com/hephy-workflow-cli-release"
3939

4040
if [ "${ARCH}" = "x86_64" ]; then
4141
ARCH="amd64"
@@ -50,7 +50,7 @@ if [ "${VERSION}" != 'stable' ]; then
5050
fi
5151

5252
echo "Downloading ${DEIS_CLI} From Google Cloud Storage..."
53-
echo "Downloading binary from here: ${DEIS_BIN_URL_BASE}/${DEIS_CLI_PATH}
53+
echo "Downloading binary from here: ${DEIS_BIN_URL_BASE}/${DEIS_CLI_PATH}"
5454
curl -fsSL -o deis "${DEIS_BIN_URL_BASE}/${DEIS_CLI_PATH}"
5555

5656
chmod +x deis

0 commit comments

Comments
 (0)