20 lines
474 B
Bash
20 lines
474 B
Bash
#!/bin/bash
|
|
source "functions.sh"
|
|
forceLang=$1
|
|
|
|
print_title 'Getting languages'
|
|
git clone https://git.in.moodle.com/moodle/moodle-langpacks.git $LANGPACKSFOLDER
|
|
pushd $LANGPACKSFOLDER
|
|
BRANCHES=($(git br -r --format="%(refname:lstrip=3)" --sort="refname" | grep MOODLE_))
|
|
BRANCH=${BRANCHES[${#BRANCHES[@]}-1]}
|
|
git checkout $BRANCH
|
|
git pull
|
|
popd
|
|
|
|
if [ -z $forceLang ]; then
|
|
php -f moodle_to_json.php
|
|
else
|
|
php -f moodle_to_json.php "$forceLang"
|
|
fi
|
|
|
|
print_ok 'All done!' |