Update install.sh

This commit is contained in:
Kroese 2025-03-26 02:03:45 +01:00 committed by GitHub
parent 1a3eacbba7
commit f5aaa8a104
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -165,8 +165,12 @@ if { tar tf "$PAT"; } >/dev/null 2>&1; then
else
{ (cd "$TMP" && python3 /run/patology.py -i "$PAT" -d >/dev/null); rc=$?; } || :
(( rc != 0 )) && error "Failed to extract PAT file, reason $rc" && exit 63
{ (cd "$TMP" && python3 /run/extract.py -i "$PAT" -d 2>/run/extract.log); rc=$?; } || :
if (( rc != 0 )); then
cat /run/extract.log
error "Failed to extract PAT file, reason $rc" && exit 63
fi
fi