Merge branch 'master' of github.com:BinaryAnalysisPlatform/qira into ida_plugin_update

This commit is contained in:
Ned Williamson 2016-01-21 11:55:28 -05:00
commit 743bc5300e
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
#!/bin/bash -e
# default is just pip, but on things like arch where python 3 is default, it's pip2
PIP="pip"
if [ $(which pip2) ]; then
PIP="pip2"
else
PIP="pip"
fi
unamestr=$(uname)
if [[ "$unamestr" == 'Linux' ]]; then