Skip to content

Commit d6229d3

Browse files
author
Karl Bishop
authored
Fixed typo on curl create causing spurious "1" file to be created.
lots of random "1" files kept showing on system containing "/usr/bin/curl". Apologies to all.
1 parent 5eea887 commit d6229d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

linux-installer/idt-installer

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (c) 2017, International Business Machines. All Rights Reserved.
88
#------------------------------------------------------------------------------
99

10-
VERSION="1.0.1"
10+
VERSION="1.0.2"
1111
PROG="IBM Cloud Developer Tools - Installer"
1212
INSTALLER_URL="https://ibm.biz/idt-installer"
1313
GIT_URL="https://github.com/IBM-Bluemix/ibm-cloud-developer-tools"
@@ -190,7 +190,7 @@ function install_deps {
190190
[[ -z "$(which brew)" ]] && USEBREW=false
191191

192192
# Install curl if not already installed.
193-
if ! $(which curl >/dev/null 2&>1); then
193+
if ! $(which curl >/dev/null 2>&1); then
194194
if [ "$PLATFORM" = Linux ]; then
195195
$SUDO apt-get -y update
196196
$SUDO apt-get -y install curl

0 commit comments

Comments
 (0)