Remove scriptlet

This commit is contained in:
Michael Snoyman 2015-03-22 15:16:21 +02:00
parent 495b5a9576
commit ed0d2a8c49

View File

@ -39,13 +39,3 @@ script:
- yesod keter
- mkdir -p to-travis
- cp stackage-server.keter to-travis
# The following scriptlet checks that the resulting source distribution can be built & installed
- export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
cd dist/;
if [ -f "$SRC_TGZ" ]; then
cabal install --force-reinstalls "$SRC_TGZ";
else
echo "expected '$SRC_TGZ' not found";
exit 1;
fi