Skip to content

Commit e54002c

Browse files
author
Eric Wiseblatt
authored
Merge pull request #32 from ewiseblatt/fix_typo
fix(dev): Fixed installation in a development environment.
2 parents 8a4c5fe + 111bd4c commit e54002c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install_dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ sudo DEFAULT_CONFIG_YML_DIR="$DEFAULT_CONFIG_YML_DIR" \
3131
$@
3232

3333
echo "Installing python requirements"
34-
if [[ ! pip install -r spinnaker-monitoring-daemon/requirements.txt ]]
34+
if ! pip install -r spinnaker-monitoring-daemon/requirements.txt; then
3535
>&2 echo "Could not install spinnaker-monitoring-daemon/requirements.txt"
3636
>&2 echo "You might need to sudo it yourself, use virtualenv or install python-pip."
3737
fi

0 commit comments

Comments
 (0)