Skip to content

Commit

Permalink
Merge pull request #12 from joel-bluedata/usr-local
Browse files Browse the repository at this point in the history
fix invocation for not-new layout
  • Loading branch information
joel-bluedata authored Jan 26, 2022
2 parents 9d499be + 1f699f2 commit 266626c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ then
scripthome=$(python -c 'import site; print(site.USER_BASE)')/bin
installdir=$(python -c 'import site; print(site.USER_SITE)')
mkdir -p "$installdir"
installarg="--user"
installarg="install --user"
else
scripthome="/usr/bin"
installarg=""
installarg="install"
fi

(cd ${THIS_DIR}; python setup.py install "$installarg" --install-scripts="$scripthome")
(cd ${THIS_DIR}; python setup.py $installarg --install-scripts="$scripthome")

0 comments on commit 266626c

Please sign in to comment.