Files
mediawiki-extensions-Univer…/scripts/update-jquery-i18n.sh
Niklas Laxström 1a378e3cca Update upstream update scripts
* Allow to run any directory
* Leaving stuff on /tmp was not nice
* Git pull was run on wrong directory

Change-Id: Ia7f82de55c9bd446c29afc0684660ed00b6585bf
2016-05-04 14:01:08 +02:00

23 lines
395 B
Bash
Executable File

#!/bin/bash
BASEDIR=$(dirname "$0")
BASEDIR="$BASEDIR/.."
DEST="$BASEDIR/lib/jquery.i18n"
CLONEDIR="$BASEDIR/vendor/jquery.i18n"
UPSTREAM="https://github.com/wikimedia/jquery.i18n.git"
echo "Getting latest jquery.i18n from $UPSTREAM"
if [ -d "$CLONEDIR" ]; then
pushd "$CLONEDIR"
git pull
popd
else
git clone "$UPSTREAM" "$CLONEDIR"
fi
rm -rf "$DEST"/*
cp -R "$CLONEDIR"/src/* "$DEST"