view setup.sh @ 56:22725d4d7849

An attempt to get it to troff-ize styled text.
author David Barts <n5jrn@me.com>
date Sat, 19 Mar 2022 23:04:40 -0700
parents e8d2a7e6f6c7
children
line wrap: on
line source

#!/bin/bash

export JRE_HOME="$(/usr/libexec/java_home)"
export KOTLIN_HOME="/Users/davidb/kotlin/1.6.10/kotlinc"
if [[ "$PATH" != *$KOTLIN_HOME/bin* ]]
then
    export PATH="$KOTLIN_HOME/bin:$PATH"
fi

export ANT_HOME="$HOME/java/apache-ant-1.10.1"
if [[ "$PATH" != *$ANT_HOME/bin* ]]
then
    export PATH="$ANT_HOME/bin:$PATH"
fi