forked from pool/gnome-patch-translation
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Fail on errors:
|
||
|
set -e
|
||
|
|
||
|
# Read the config?
|
||
|
. gnome-patch-translation.conf
|
||
|
BRANCH=$LCN_BRANCH
|
||
|
|
||
|
# First of all, read set of update tools from SVN:
|
||
|
eval svn co $FORGESVN_URI/50-tools
|
||
|
|
||
|
export CALLING_FROM_G_P_T=1
|
||
|
export FORGESVN_URI LCN_BRANCH OSC_REPOSITORY GPT_PACKAGES OSC_APIURL
|
||
|
|
||
|
# And then run gnome-patch-translation-from-forge
|
||
|
exec 50-tools/gnome-patch-translation-from-forge
|