mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Remove Go's install-deps.sh script
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Installs any necessary QL pack dependencies from the package registry.
|
||||
# The optional argument must be a valid value for the `--mode` option to `codeql pack install`
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||
GO_ROOT=$(dirname "$SCRIPT_DIR")
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
LOCK_MODE="use-lock"
|
||||
elif [ $# -eq 1 ]; then
|
||||
LOCK_MODE=$1
|
||||
else
|
||||
echo "Usage: install-deps.sh [<lock-mode>]"
|
||||
echo " lock-mode: One of 'use-lock' (default), 'verify', 'update', or 'no-lock'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for d in ql/lib ql/src ql/test ql/examples
|
||||
do
|
||||
codeql pack install --mode ${LOCK_MODE} "${GO_ROOT}/${d}"
|
||||
done
|
||||
Reference in New Issue
Block a user