-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Add setup bash script that sets some needed environment vars
- Loading branch information
1 parent
e06796b
commit c8f584f
Showing
3 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
echo "Setting environment variables..." | ||
|
||
# Get the current directory | ||
current_dir=$(pwd) | ||
|
||
export PYTHONPATH="$PYTHONPATH:$current_dir" | ||
echo "PYTHONPATH appended with: $current_dir" | ||
|
||
export SUITE_SCRIPT="rixSuiteConfig.py" | ||
echo "SUITE_SCRIPT set to: $SUITE_SCRIPT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters