Skip to content

Commit

Permalink
Fix bash condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed May 17, 2021
1 parent dab0cdd commit c423b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/python_sdist_test.sh
Expand Up @@ -43,7 +43,7 @@ export PYARROW_WITH_DATASET=${ARROW_DATASET:-OFF}
# apt purge -y pkg-config

# ARROW-12619
if [ command -v COMMAND &> /dev/null ]; then
if command -v git &> /dev/null; then
echo "Git exists, remove it from PATH before executing this script."
exit 1
fi
Expand Down

0 comments on commit c423b96

Please sign in to comment.