Skip to content

Commit

Permalink
Better checking for steam build failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrohrer committed Jul 20, 2019
1 parent 307f61b commit 5ef8402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/generateDataOnlyDiffBundle.sh
Expand Up @@ -545,7 +545,7 @@ echo "Old Steam build ID: $oldBuildID"
echo "New Steam build ID: $newBuildID"
echo ""

if [ $newBuildID -eq $oldBuildID ]
if [[ $newBuildID = "" || $newBuildID -le $oldBuildID ]]
then

echo ""
Expand Down
2 changes: 1 addition & 1 deletion scripts/generateSteamContentDepot.sh
Expand Up @@ -153,7 +153,7 @@ echo ""



if [ $newBuildID -eq $oldBuildID ]
if [[ $newBuildID = "" || $newBuildID -le $oldBuildID ]]
then
echo ""
echo ""
Expand Down

0 comments on commit 5ef8402

Please sign in to comment.