mirror of
https://abf.rosa.ru/djam/cabal-install.git
synced 2025-02-24 07:02:51 +00:00
9 lines
164 B
Bash
9 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
|