From 2692667af061cd0b97f2128f3d00d2728dd1da04 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 30 Oct 2023 10:56:37 -0400 Subject: [PATCH] use exports --- configs/scripts/guru-shell | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/scripts/guru-shell b/configs/scripts/guru-shell index e30d38c..5d46db3 100644 --- a/configs/scripts/guru-shell +++ b/configs/scripts/guru-shell @@ -28,14 +28,14 @@ else fi # Set PYTHONPATH based on the data we learned -PYTHONPATH="$s_drive/$studio2023_path/env$pathsep$PYTHONPATH" -PYTHONPATH="$s_drive/$studio2023_path$pathsep$PYTHONPATH" +export PYTHONPATH="$s_drive/$studio2023_path/env$pathsep$PYTHONPATH" +export PYTHONPATH="$s_drive/$studio2023_path$pathsep$PYTHONPATH" # Update the PATH to point to the studio's install of python -PATH="/c/Programs/software/win/core/python/python_3.7.7$pathsep$PATH" +export PATH="/c/Programs/software/win/core/python/python_3.7.7$pathsep$PATH" # Configure the prompt -PS1_CTX="guru$ps1_mode bash" +export PS1_CTX="guru$ps1_mode bash" # Finally, start bash bash \ No newline at end of file