give a better error message on missing installer (#21)

This commit is contained in:
Spencer Florence 2017-08-08 16:41:08 -05:00 committed by Greg Hendershott
parent d4440963a8
commit 1df1d73d94

View File

@ -37,10 +37,19 @@ else
fi
if [ -n "$TEST" ]; then
printf "%s %-7s %-120s " $RACKET_MINIMAL $RACKET_VERSION $URL
if curl -I -L $URL 2>&1 | grep 404.Not.Found ; then
exit 1
printf "%s %-7s %-120s " $RACKET_MINIMAL $RACKET_VERSION $URL
fi
echo "Checking installer"
if curl -I -L $URL 2>&1 | grep 404.Not.Found ; then
echo "Installer not available"
if [[ "$RACKET_VERSION" = "HEAD" ]]; then
echo "Did the build fail? Check the logs at https://plt.eecs.northwestern.edu/snapshots/current/log/"
fi
exit 1
fi
if [ -n "$TEST" ]; then
echo "GOOD"
exit 0
fi