8c80dca91b
I guess we'll see at the next release whether I did this correctly.
8 lines
134 B
Bash
Executable File
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
|