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

fix build script and add pragma

parent 4b50efdd
#!/bin/sh #!/bin/sh
cd profile cd profile
rm profile.tar rm -f profile.tar
tar -cvf profile.tar * tar -cvf profile.tar *
cd .. cd ..
cabal install --force-reinstalls || return 1 cabal install --force-reinstalls || exit 1
cd ihaskell-display cd ihaskell-display
for dir in `ls` for dir in `ls`
do do
cd $dir cd $dir
cabal install || return 1 cabal install || exit 1
cd .. cd ..
done done
......
{-# LANGUAGE NoImplicitPrelude, OverloadedStrings #-} {-# LANGUAGE NoImplicitPrelude, OverloadedStrings, DoAndIfThenElse #-}
{- | {- |
Description : Generates tab completion options. Description : Generates tab completion options.
...@@ -192,4 +192,4 @@ completePath currDir exts prefix ...@@ -192,4 +192,4 @@ completePath currDir exts prefix
cut (x:xs) z@(y:ys) | x == y = cut xs ys cut (x:xs) z@(y:ys) | x == y = cut xs ys
| otherwise = z | otherwise = z
cut _ z = z cut _ z = z
in relativeCompletions in relativeCompletions
\ No newline at end of file
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