Skip to content

Commit

Permalink
Return non 0 on failure in hope it fails workload
Browse files Browse the repository at this point in the history
  • Loading branch information
simotek committed Aug 31, 2024
1 parent 5df4840 commit 14a45e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/resources/packaging/lgpt_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ collect_resources() { #1PLATFORM #2lgpt.*-exe
echo "Build for $2!" # Found it
else
echo "-->file $2 not found<---"
return;
return 1;
fi
PACKAGE=LGPT-$1-$VERSION.zip
echo "-=-=Packaging $PACKAGE=-=-"
Expand Down

0 comments on commit 14a45e1

Please sign in to comment.