Files
profile/.rc.d/c64.sh
2024-09-24 12:24:20 -07:00

10 lines
358 B
Bash
Executable File

if [ -f "$HOME/Applications/KickAssembler/KickAss.jar" ]; then
# TODO: typeset may fail if CLASSPATH is already tied by another script. Handle this.
typeset -T CLASSPATH classpath
classpath+="$HOME/Applications/KickAssembler/KickAss.jar"
export CLASSPATH
fi
if [ -d "/Applications/VICE/bin" ]; then
path=(/Applications/VICE/bin $path)
fi