mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
11 lines
168 B
Bash
Executable file
11 lines
168 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ -d "${HOME}/.cabal/bin" ] ; then
|
|
if [ -z "${PATH}" ] ; then
|
|
PATH="${HOME}/.cabal/bin"
|
|
else
|
|
PATH="${HOME}/.cabal/bin:${PATH}"
|
|
fi
|
|
fi
|
|
|
|
export PATH
|