mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 04:43:18 +00:00
ac8d1eec0c
...so that it can be used without cd-ing. Change-Id: I8e75b7348dfe0d3bd7185899bfeecbe63de11161
10 lines
243 B
Bash
Executable file
10 lines
243 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
pushd $SCRIPT_DIR > /dev/null
|
|
jsduck \
|
|
--config=./jsduck-config.json \
|
|
--color --warnings-exit-nonzero \
|
|
&& echo 'JSDuck execution finished.'
|
|
popd > /dev/null
|