зеркало из https://github.com/mozilla/bedrock.git
16 строки
438 B
Bash
Executable File
16 строки
438 B
Bash
Executable File
#!/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 https://mozilla.org/MPL/2.0/.
|
|
|
|
set -ex
|
|
if [ ! -e ./manage.py ]; then
|
|
# this does not support symlinks
|
|
script_parent_dir=${0%/*}/..
|
|
cd $script_parent_dir
|
|
fi
|
|
|
|
./bin/run-db-download.py --force
|
|
./manage.py migrate --noinput
|
|
./manage.py l10n_update
|