Skip to content

Commit

Permalink
fix invocation for not-new layout
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-bluedata committed Jan 26, 2022
1 parent f146553 commit 1f699f2
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 1f699f2

Please sign in to comment.