Files
codeql/python/tools/prepare-db-upgrade.sh

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 "$@"