Skip to content

Commit

Permalink
Merge pull request #281 from ElvisDot/error-exit-code
Browse files Browse the repository at this point in the history
Error with non zero exit code
  • Loading branch information
julesvanrie authored Jun 30, 2024
2 parents 7797d70 + 9ed3a1a commit de97313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions checks/pip_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ if (( ${#missing[@]} )); then
sentence+='` again.'
echo '❌ Some packages are missing:'
echo $sentence
exit 1
else
echo '✅ Everything is fine, continue the setup instructions.'
fi
1 change: 1 addition & 0 deletions checks/python_checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ if [[ $my_python_version = *$0* ]];then
echo "✅ Your Python version OK."
else
echo "❌ Your Python version is $my_python_version but it should be $0."
exit 1
fi

0 comments on commit de97313

Please sign in to comment.