63ad5b7c08
This permits users to check ZMK out into arbitrarily-named directories
6 lines
185 B
Bash
6 lines
185 B
Bash
export LS_OPTIONS='-F --color=auto'
|
|
eval "`dircolors`"
|
|
alias ls='ls $LS_OPTIONS'
|
|
if [ -f "$WORKSPACE_DIR/zephyr/zephyr-env.sh" ]; then
|
|
source "$WORKSPACE_DIR/zephyr/zephyr-env.sh"
|
|
fi
|