Commit 7f23e743 authored by Andrew Gibiansky's avatar Andrew Gibiansky

fix build script and add pragma

parent 4b50efdd
#!/bin/sh
cd profile
rm profile.tar
rm -f profile.tar
tar -cvf profile.tar *
cd ..
cabal install --force-reinstalls || return 1
cabal install --force-reinstalls || exit 1
cd ihaskell-display
for dir in `ls`
do
cd $dir
cabal install || return 1
cabal install || exit 1
cd ..
done
......
{-# LANGUAGE NoImplicitPrelude, OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude, OverloadedStrings, DoAndIfThenElse #-}
{- |
Description : Generates tab completion options.
......@@ -192,4 +192,4 @@ completePath currDir exts prefix
cut (x:xs) z@(y:ys) | x == y = cut xs ys
| otherwise = z
cut _ z = z
in relativeCompletions
\ No newline at end of file
in relativeCompletions
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment