The-Powder-Toy/.github/starcatcher-release.sh
Tamás Bálint Misius 8c80dca91b
Print starcatcher release response to console if it fails
I guess we'll see at the next release whether I did this correctly.
2021-11-08 15:32:05 +01:00

8 lines
134 B
Bash
Executable File

#!/bin/sh
curl $1 > perform_release
if ! grep "Release complete" < perform_release > /dev/null; then
cat perform_release
exit 1
fi