summaryrefslogtreecommitdiffstats
path: root/tools/haskell-platform/cabal-install.sh
blob: fdcf0061341af5cd2cec08805e8a396ebbc60cc0 (plain)
1
2
3
4
5
6
7
8
CABALBIN=${HOME}/.cabal/bin

if ! echo ${PATH} | /bin/grep -q ${CABALBIN} ; then
    if [ -d ${CABALBIN} ]; then
	PATH=${PATH}:${CABALBIN}
    fi
fi
unset CABALBIN