12 lines
247 B
Bash
12 lines
247 B
Bash
echo "Loading Linux Workspace Project bashrc"
|
|
|
|
WORKSPACE_BASHRC=$(realpath $BASH_SOURCE)
|
|
export WORKSPACE=$(dirname $WORKSPACE_BASHRC)
|
|
|
|
for rc_file in $WORKSPACE/rc/*; do
|
|
source $rc_file
|
|
done
|
|
|
|
PATH=$($WORKSPACE/bin/path-uniq.py $WORKSPACE/bin)
|
|
|