-
-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build/pkgs/sage_sws2rst/spkg-install: Do not call spkg-check from her…
…e any more
- Loading branch information
Matthias Koeppe
committed
Oct 11, 2023
1 parent
3c2939a
commit 07fbc3c
Showing
2 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
#! /bin/sh | ||
cd src && ./check.sh | ||
cd src | ||
./check.sh | ||
if [ $? -ne 0 ]; then | ||
if [ "$SAGE_CHECK" = "warn" ]; then | ||
echo >&2 "Warning: Failures testing package $PKG_NAME (ignored)" "make check" | ||
else | ||
echo >&2 "Error testing package $PKG_NAME" "make check" | ||
exit 1 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters