Skip to content

Commit e1b82df

Browse files
committed
Don't fail on non-buildable mods
1 parent d56fdd8 commit e1b82df

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/gha/build_common.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ for (( i = 0 ; i < MODS ; i++ )); do
7272
GAMEDIR="" # expected to be set within build_hlsdk_portable_branch
7373

7474
pushd hlsdk-portable || exit 1
75-
build_hlsdk_portable_branch "$BRANCH"
76-
SUCCESS=$?
77-
78-
if [ $SUCCESS -ne 0 ]; then
79-
continue
80-
fi
75+
build_hlsdk_portable_branch "$BRANCH"
76+
SUCCESS=$?
8177
popd || exit 1
8278

79+
if [ $SUCCESS -ne 0 ]; then
80+
continue
81+
fi
82+
8383
pack_staged_gamedir "$GAMEDIR" "$GH_CPU_OS-$GH_CPU_ARCH"
8484
done

0 commit comments

Comments
 (0)