diff --git a/bashrc b/bashrc index 2831867..86de365 100644 --- a/bashrc +++ b/bashrc @@ -6,9 +6,15 @@ export LWS=$WORKSPACE echo "Linux Workspace initialization $WORKSPACE_BASHRC" -for rc_file in $WORKSPACE/rc/*; do +if [[ -z $LC_ALL ]]; then + export LC_ALL=C +fi + +for rc_file in $WORKSPACE/rc/*.sh; do + echo "LOAD $rc_file" source $rc_file done append_path "$LWS/bin" PATH="$(uniq_path)" +