gl3 alias
This commit is contained in:
parent
e99c5854b9
commit
84fa07ec87
@ -35,8 +35,9 @@ if [ "$force_debug" == "y" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Set PYTHONPATH based on the data we learned
|
# Set PYTHONPATH based on the data we learned
|
||||||
export PYTHONPATH="$s_drive/$studio2023_path/env$pathsep$PYTHONPATH"
|
export GURU_PYTHON_ROOT="$s_drive/$studio2023_path"
|
||||||
export PYTHONPATH="$s_drive/$studio2023_path$pathsep$PYTHONPATH"
|
export PYTHONPATH="$GURU_PYTHON_ROOT/env$pathsep$PYTHONPATH"
|
||||||
|
export PYTHONPATH="$GURU_PYTHON_ROOT$pathsep$PYTHONPATH"
|
||||||
|
|
||||||
# Update the PATH to point to the studio's install of python
|
# Update the PATH to point to the studio's install of python
|
||||||
if [ -d "/c/Programs/software/win/core/python/python_3.7.7" ]; then
|
if [ -d "/c/Programs/software/win/core/python/python_3.7.7" ]; then
|
||||||
@ -47,4 +48,5 @@ fi
|
|||||||
export PS1_CTX="guru$ps1_mode bash"
|
export PS1_CTX="guru$ps1_mode bash"
|
||||||
|
|
||||||
# Finally, start bash
|
# Finally, start bash
|
||||||
|
export EWP_IN_GURU_ENVIRONMENT=1
|
||||||
bash
|
bash
|
@ -58,6 +58,11 @@ if [ -x "$(command -v python)" ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# If we are running in a studio environment
|
||||||
|
if [ ! -z "$EWP_IN_GURU_ENVIRONMENT" ]; then
|
||||||
|
alias guru_launcher3="python $GURU_PYTHON_ROOT/env/guru_launcher3.py"
|
||||||
|
fi
|
||||||
|
|
||||||
# Kill via pgrep
|
# Kill via pgrep
|
||||||
nkill() {
|
nkill() {
|
||||||
if [ $# != 1 ]; then
|
if [ $# != 1 ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user