mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-02 17:55:19 +00:00
Add fallback on site-setup.sh if no RISCV/site-setup.sh exists.
This commit is contained in:
parent
cc287a037a
commit
fd2f88ef33
6
setup.sh
6
setup.sh
@ -27,6 +27,10 @@ export PATH=$WALLY/bin:$PATH
|
|||||||
ulimit -s 100000
|
ulimit -s 100000
|
||||||
|
|
||||||
# load site licenses and tool locations
|
# load site licenses and tool locations
|
||||||
source $RISCV/site-setup.sh
|
if [ -f ${RISCV}/site-setup.sh ]; then
|
||||||
|
source ${RISCV}/site-setup.sh
|
||||||
|
else
|
||||||
|
source ${WALLY}/site-setup.sh
|
||||||
|
fi
|
||||||
|
|
||||||
echo "setup done"
|
echo "setup done"
|
||||||
|
Loading…
Reference in New Issue
Block a user