mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
trying to fix hhc exit code
This commit is contained in:
parent
e6ec04d9d4
commit
f8369c15e9
4
.github/workflows/cmake.yml
vendored
4
.github/workflows/cmake.yml
vendored
@ -79,9 +79,11 @@ jobs:
|
||||
bash fixup_html.bash
|
||||
popd
|
||||
# hhc returns 1 on success
|
||||
set +e
|
||||
'C:\Program Files (x86)\HTML Help Workshop\hhc' phreeqc3.hhp | tee hhc.out
|
||||
set -e
|
||||
status=${PIPESTATUS[0]}
|
||||
if [ $status -eq 1 ]; then
|
||||
if [ "$status" -eq 1 ]; then
|
||||
echo "[OK]"
|
||||
exit 0
|
||||
else
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user