This was not being pushed from a testing MacBook so I'm adding it all at once. This is unfinished, still needs scripts to prep the working macOS env from which the live env is built. El Capitan code is likely to be dropped completely. Installing or compiling dependencies in brew is problematic at this point.
14 lines
264 B
Bash
14 lines
264 B
Bash
export HOME=/Volumes/RAM_Disk
|
|
|
|
# Set Locale
|
|
LC_ALL=en_US.UTF-8; export LC_ALL
|
|
LANG=en_US.UTF-8; export LANG
|
|
|
|
# Set PATH
|
|
for p in /usr{/local/opt/{e2fsprogs,ruby,util-linux},/local,}/{bin,sbin}; do
|
|
PATH="${p}:${PATH}"
|
|
done
|
|
export PATH
|
|
|
|
# Aliases
|
|
source /.aliases
|