dotfiles/zsh/func/init_env_darwin
Eryn Wells 6276b5f40e [zsh] Move Darwin $OSBUILD, $OSVERSION, and $HWMODEL
Move them from init_env_Darwin to their own functions in the new zsh/func/darwin
directory.
2023-03-28 10:50:59 -07:00

10 lines
291 B
Bash

#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
autoload append_to_path
autoload prepend_to_path
export XCODE_LIBRARY="$HOME/Library/Developer/Xcode"
export XCODE_DERIVED_DATA="$XCODE_LIBRARY/DerivedData"
export XCODE_INSTALLS="$XCODE_LIBRARY/Installs"
export dd="$XCODE_DERIVED_DATA"