mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
codeql-go merge prep: move into go/ directory
This commit is contained in:
22
go/scripts/install-deps.sh
Executable file
22
go/scripts/install-deps.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/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