Skip to content

Commit

Permalink
Add set -e to install_dependencies.sh (#713)
Browse files Browse the repository at this point in the history
`set -e` will exit on every non-zero status code
  • Loading branch information
alvarobartt authored Jun 10, 2024
1 parent f7eef99 commit 893cfa3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

python_version=$(python -c "import sys; print(sys.version_info[:2])")

python -m pip install uv
Expand Down

0 comments on commit 893cfa3

Please sign in to comment.