mirror of https://github.com/openXC7/prjxray.git
7 lines
137 B
Bash
7 lines
137 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
VIVADO_BIN="$(find /opt/Xilinx/Vivado -maxdepth 2 -name bin)"
|
||
|
|
if [ -n "$VIVADO_BIN" ]; then
|
||
|
|
export PATH=$PATH:$VIVADO_BIN
|
||
|
|
fi
|