Skip to content

Commit

Permalink
Check the pwd, path, pythonpath
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-narozniak committed Sep 14, 2023
1 parent ede672d commit 8043041
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions datasets/dev/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ set -e
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/../

# Append parent directory to make flwr_tool.init_py_check discoverable
PARENT_DIR=$(dirname $(pwd))
export PYTHONPATH="${PYTHONPATH}:${PARENT_DIR/src/py}"
#PARENT_DIR=$(dirname $(pwd))
current_dir=$(pwd)
echo "Current directory is: $current_dir"
#export PYTHONPATH="${PYTHONPATH}:${PARENT_DIR/src/py}"
echo "PATH"
echo ${PATH}
echo "PYTHONPATH"
echo ${PYTHONPATH}

echo "=== test.sh ==="

Expand Down

0 comments on commit 8043041

Please sign in to comment.