Skip to content

Commit

Permalink
master: check_install.sh: check for eqaulity as numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbell committed Apr 29, 2024
1 parent 7909bd1 commit a6c2c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/check_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pip install --prefix=$prefix .
#
# PYTHONPATH
count=$(find $prefix -name 'site-packages' | wc -l)
if [ "$count" != 1 ]
if [ "$count" -ne 1 ]
then
echo "check_install.sh: $count site-packages below $prefix"
find $prefix -name 'site-packages'
Expand Down

0 comments on commit a6c2c16

Please sign in to comment.