From 6761df6d9d173478d058999faee35f5c12d174ba Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Mon, 8 Feb 2021 12:36:50 -0700 Subject: [PATCH] [Bugfix] Reverted setting OPENFPGA_PATH --- openfpga.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/openfpga.sh b/openfpga.sh index 9a2c80942..c8275b6dc 100755 --- a/openfpga.sh +++ b/openfpga.sh @@ -5,13 +5,7 @@ #author : Ganesh Gore #============================================================================== -if [ -z $OPENFPGA_PATH ]; then - echo "OPENFPGA_PATH variable not found" - export OPENFPGA_PATH=$(pwd); - echo "Setting OPENFPGA_PATH=${OPENFPGA_PATH}" -else - echo "OPENFPGA_PATH=${OPENFPGA_PATH}" -fi +export OPENFPGA_PATH="$(pwd)" export OPENFPGA_SCRIPT_PATH="${OPENFPGA_PATH}/openfpga_flow/scripts" export OPENFPGA_TASK_PATH="${OPENFPGA_PATH}/openfpga_flow/tasks" if [ -z $PYTHON_EXEC ]; then export PYTHON_EXEC="python3"; fi