diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-10-04 16:54:07 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-10-04 16:54:07 -0400 |
commit | 89191059ef419dbad72fdc831ca3c29860d26a0c (patch) | |
tree | d38768614c39b51fa860bf03c955b0f7d8932353 | |
parent | 617801401ff84e0142fa3fe5f6614671094e2cef (diff) |
SL-18837: Upload symbol file and physics pkg without installer.
build.sh logic used to test whether the installer existed and skip the
symbol-file and llphysicsextensions uploads if not. Since we now sign and
package the built viewer in a later build job, it's no longer appropriate to
gate these uploads on existence of the installer.
-rwxr-xr-x | build.sh | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -546,11 +546,9 @@ then if $build_viewer then begin_section "Uploads" - # Upload installer package=$(installer_$arch) - if [ x"$package" != x ] && test -f "$package" + if [ x"$package" != x ] then - # Upload base package. if [ "$last_built_variant" = "Release" ] then # nat 2016-12-22: without RELEASE_CRASH_REPORTING, we have no symbol file. |