From 4cefbcf575d88b7dfa85ac4b994038e6492f45f2 Mon Sep 17 00:00:00 2001 From: nstelter Date: Tue, 14 May 2024 19:22:51 -0700 Subject: [PATCH] ENH: make setup-script print what it sets more clearly --- setup.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.sh b/setup.sh index eeee827..ec116db 100644 --- a/setup.sh +++ b/setup.sh @@ -5,11 +5,13 @@ current_dir=$(pwd) # so scripts can find the calibrationSuite library code export PYTHONPATH="$PYTHONPATH:$current_dir" +echo "PYTHONPATH = $PYTHONPATH" # so output folders are written in a shared location -echo "export OUTPUT_ROOT="\"$OUTPUT_ROOT\" +##export OUTPUT_ROOT="/sdf/data/lcls/ds/rix/rixx1005922/scratch/" +export OUTPUT_ROOT="/sdf/data/lcls/ds/rix/rixx1005922/results/" +echo "OUTPUT_ROOT = $OUTPUT_ROOT" # point to which config file to use -#export SUITE_CONFIG="rixSuiteConfig.py" export SUITE_CONFIG="epixMSuiteConfig.py" -echo "export SUITE_CONFIG="\"$SUITE_CONFIG\" +echo "SUITE_CONFIG = $SUITE_CONFIG" \ No newline at end of file