зеркало из https://github.com/mozilla/bugbug.git
17 строки
515 B
Bash
17 строки
515 B
Bash
#!/bin/bash
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Download models and check that models can be correctly be loaded. Can be
|
|
# disabled by passing CHECK_MODELS=0 as an environment variable
|
|
|
|
set -eox pipefail
|
|
|
|
if [ "$CHECK_MODELS" == "0" ]; then
|
|
echo "Skipping downloading and checking models!"
|
|
exit 0;
|
|
fi
|
|
|
|
python -m bugbug_http.download_models
|