aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAdrian Byszuk <adrian.byszuk@gmail.com>2021-03-05 17:42:29 +0100
committerGitHub <noreply@github.com>2021-03-05 17:42:29 +0100
commit80b41f38598931c14db30232b8b38b12186c156d (patch)
tree933bfc5dfc12fc2b31cbf697fa25b3b25ec16e7f /scripts
parent062ff5b6a41caf93e03c417e31a8a6471993abf1 (diff)
downloadghdl-80b41f38598931c14db30232b8b38b12186c156d.tar.gz
ghdl-80b41f38598931c14db30232b8b38b12186c156d.tar.bz2
ghdl-80b41f38598931c14db30232b8b38b12186c156d.zip
scripts/vendors: fix typo in deprecated script param (#1673)
Pull request #1653 reintroduced deprecated script params, but with a typo in one of the vendor scripts. Co-authored-by: Adrian Byszuk <adrian.byszuk@cern.ch>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vendors/compile-xilinx-ise.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vendors/compile-xilinx-ise.sh b/scripts/vendors/compile-xilinx-ise.sh
index 2e3cc3355..354193501 100755
--- a/scripts/vendors/compile-xilinx-ise.sh
+++ b/scripts/vendors/compile-xilinx-ise.sh
@@ -121,11 +121,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- -src|--source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- -out|--output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;