mirror of
https://abf.rosa.ru/djam/cabal-install.git
synced 2025-02-23 22:52:51 +00:00
8 lines
164 B
Bash
8 lines
164 B
Bash
CABALBIN=${HOME}/.cabal/bin
|
|
|
|
if ! echo ${PATH} | /bin/grep -q ${CABALBIN} ; then
|
|
if [ -d ${CABALBIN} ]; then
|
|
PATH=${PATH}:${CABALBIN}
|
|
fi
|
|
fi
|
|
unset CABALBIN
|