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 8dc4dcb commit e13c7b1Copy full SHA for e13c7b1
scripts/git_update_sources.sh
@@ -12,7 +12,7 @@ export RED='\033[0;31m'
12
export GREEN='\033[0;32m'
13
export BLUE='\033[0;34m'
14
export YELLOW='\033[0;33m'
15
-
+export error=0;
16
17
if [ "x$1" == "x" ]; then
18
echo "Usage: $0 dir_document_of_git_repositories [subdir|all]"
@@ -85,6 +85,7 @@ do
85
php build/generate_filelist_xml.php release=auto-sellyoursaas buildzip=1
86
if [ $? -ne 0 ]; then
87
echo "!!!!! ERROR Failed to generate the signature file"
88
+ error=1
89
#exit 1; # We disable exit so we continue with next dir, so only dir in error is not built
90
fi
91
@@ -110,3 +111,4 @@ do
110
111
done
112
113
echo "Finished."
114
+exit $error
0 commit comments