7 lines
199 B
Bash
7 lines
199 B
Bash
#This is used to reload the instance
|
|
TRAPUSR1() {
|
|
if [[ -o INTERACTIVE ]]; then
|
|
exec "${SHELL}"
|
|
fi
|
|
}
|
|
export JAVA_HOME="/opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk/Contents/Home"
|