Skip to content
Snippets Groups Projects
Commit eaeadf71 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: If we don't produce a symbol file, don't try to upload it.

parent 6ef55541
Branches
Tags
No related merge requests found
...@@ -404,6 +404,9 @@ then ...@@ -404,6 +404,9 @@ then
done done
if [ "$last_built_variant" = "Release" ] if [ "$last_built_variant" = "Release" ]
then
# nat 2016-12-22: without RELEASE_CRASH_REPORTING, we have no symbol file.
if [ "${RELEASE_CRASH_REPORTING:-}" != "OFF" ]
then then
# Upload crash reporter file # Upload crash reporter file
# These names must match the set of VIEWER_SYMBOL_FILE in indra/newview/CMakeLists.txt # These names must match the set of VIEWER_SYMBOL_FILE in indra/newview/CMakeLists.txt
...@@ -420,6 +423,7 @@ then ...@@ -420,6 +423,7 @@ then
esac esac
python_cmd "$helpers/codeticket.py" addoutput "Symbolfile" "$symbolfile" \ python_cmd "$helpers/codeticket.py" addoutput "Symbolfile" "$symbolfile" \
|| fatal "Upload of symbolfile failed" || fatal "Upload of symbolfile failed"
fi
# Upload the llphysicsextensions_tpv package, if one was produced # Upload the llphysicsextensions_tpv package, if one was produced
# *TODO: Make this an upload-extension # *TODO: Make this an upload-extension
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment