mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
9 lines
253 B
Bash
Executable File
9 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Prepare the upgrade script directory for a Python database schema upgrade. Now
|
|
# just forwards to the language-independent script.
|
|
|
|
set -eu
|
|
app_dir="$(dirname "$0")"
|
|
"${app_dir}/../../misc/scripts/prepare-db-upgrade.sh" --lang python "$@"
|