We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 959cb17 commit 19ebb07Copy full SHA for 19ebb07
scripts/update_lang_functions.sh
@@ -94,8 +94,12 @@ function load_langpacks {
94
pushd "$LANGPACKS_PATH"
95
96
git checkout "langpack_$LANGVERSION"
97
- git pull
+ if [ $? -ne 0 ]; then
98
+ echo "Cannot checkout language repository langpack_$LANGVERSION"
99
+ exit 1
100
+ fi
101
102
+ git pull
103
if [ $? -ne 0 ]; then
104
echo "Cannot update language repository"
105
exit 1
0 commit comments