Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Add error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Oct 18, 2021
1 parent b9b1dba commit a257621
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/bin/sage-dist-helpers
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ sdh_pip_install() {

sdh_pip_editable_install() {
echo "Installing $PKG_NAME (editable mode)"
python3 -m pip install --verbose --no-deps --no-index --no-build-isolation --isolated --editable "$@"
python3 -m pip install --verbose --no-deps --no-index --no-build-isolation --isolated --editable "$@" || \
sdh_die "Error installing $PKG_NAME"
}

sdh_store_wheel() {
Expand Down

0 comments on commit a257621

Please sign in to comment.