mirror of
https://github.com/github/codeql.git
synced 2026-04-25 00:35:20 +02:00
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
>&2 echo "Running mvn wrapper script"
|
|
|
|
if [ "$2" == "dependency:copy" ]; then
|
|
>&2 echo "Arguments ($@) look like a dependency:copy command; failing"
|
|
exit 1
|
|
fi
|
|
|
|
${REAL_MVN_PATH} "$@"
|