Skip to content

Commit

Permalink
Improved Portability of setup-venv.sh Script. (#158)
Browse files Browse the repository at this point in the history
Co-authored-by: Christopher Beaudoin <[email protected]>
  • Loading branch information
cee8 and Christopher Beaudoin authored Feb 14, 2024
1 parent d4dd237 commit 07fe666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup-venv.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

if ! which python3 > /dev/null; then
if ! command -v python3 > /dev/null; then
echo "python3 is not available - please install"
exit 1
fi
Expand Down

0 comments on commit 07fe666

Please sign in to comment.