Skip to content

Commit

Permalink
Fixing installer check for ModularCalculator presence
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanL2 committed Jun 18, 2022
1 parent c336230 commit bb78374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ $# -lt 1 ]; then
fi

# Install ModularCalculator if found, otherwise assume it was installed separately
if [[ -d "./ModularCalculator" ]]
if [[ -f "./ModularCalculator/setup.py" ]]
then
pip3 install --prefix=${PREFIX} ModularCalculator/
fi
Expand Down

0 comments on commit bb78374

Please sign in to comment.