Skip to content

Commit

Permalink
Fix trap error when generating the signature file
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 6, 2024
1 parent 1e474b9 commit a4a9309
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/git_update_sources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ do
fi

echo -- Process dir $dir
echo cd $dir
cd $dir || continue
if [ $? -eq 0 ]; then
export gitdir=`basename $dir`
Expand Down Expand Up @@ -82,6 +83,10 @@ do
if [ -s build/generate_filelist_xml.php ]; then
echo "Found generate_filelist_xml.php from ".`pwd`
php build/generate_filelist_xml.php release=auto-sellyoursaas buildzip=1
if [ $? -ne 0 ]; then
echo "Failed to generate the signature file"
exit 1;
fi
fi

# Create a deployment tar file
Expand Down

0 comments on commit a4a9309

Please sign in to comment.