16 lines
363 B
Bash
16 lines
363 B
Bash
#!/bin/bash
|
|
|
|
# Fail on errors:
|
|
set -e
|
|
|
|
if ! test -x 50-tools/gnome-patch-translation-collect ; then
|
|
echo "ERROR: 50-tools/gnome-patch-translation-collect is missing.
|
|
Please call update-step1-update-translations-from-lcn."
|
|
exit 1
|
|
fi
|
|
|
|
export CALLING_FROM_G_P_T=1
|
|
|
|
# And then run gnome-patch-translation-collect
|
|
exec 50-tools/gnome-patch-translation-collect
|