Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
bauerj committed Aug 8, 2018
1 parent 6d8e0fa commit 789eb3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ for _python in python3.7 python3; do
fi
done

if [ $UPDATE_ONLY == 0 || $UPDATE_PYTHON == 1 ]; then
if [ $UPDATE_ONLY == 0 ] || [ $UPDATE_PYTHON == 1 ]; then
if which electrumx_server > /dev/null 2>&1 && [ $UPDATE_PYTHON == 0 ]; then
_error "electrumx is already installed. Use $0 --update to... update." 9
fi
Expand Down

0 comments on commit 789eb3c

Please sign in to comment.