Skip to content

Commit

Permalink
fix init.sh loading
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlivio committed Jun 28, 2023
1 parent 06dcdf9 commit baab4df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ BH_DIR="$(dirname "${BASH_SOURCE[0]}")"
source "$BH_DIR/os_any.bash"

if [[ $OSTYPE == msys* || -n $WSL_DISTRO_NAME ]]; then
echo source "$BH_DIR/os_win.bash";
source "$BH_DIR/os_win.bash";
fi

if [[ $OSTYPE == linux* ]]; then
echo source "$BH_DIR/os_ubu.bash"
source "$BH_DIR/os_ubu.bash"
fi

if [[ $OSTYPE == darwin* ]]; then
echo source "$BH_DIR/os_mac.bash"
"$BH_DIR/os_mac.bash"
fi


Expand Down

0 comments on commit baab4df

Please sign in to comment.