Skip to content
Snippets Groups Projects
Commit c0e83b39 authored by Todd Stinson's avatar Todd Stinson
Browse files

Only uploading the map file for Release builds.

parent 713aa9f2
No related branches found
No related tags found
No related merge requests found
...@@ -272,8 +272,13 @@ then ...@@ -272,8 +272,13 @@ then
gzip $mapfilepath/secondlife-bin.MAP gzip $mapfilepath/secondlife-bin.MAP
mapfile=secondlife-bin-$arch.MAP.gz mapfile=secondlife-bin-$arch.MAP.gz
mv $mapfilepath/secondlife-bin.MAP.gz $mapfilepath/$mapfile mv $mapfilepath/secondlife-bin.MAP.gz $mapfilepath/$mapfile
upload_item mapfile "$mapfilepath/$mapfile" binary/octet-stream if [ x"$variant" = xRelease ]
echo "Uploaded mapfile" then
upload_item mapfile "$mapfilepath/$mapfile" binary/octet-stream
echo "Uploaded mapfile for $variant"
else
echo "Skipping mapfile upload for $variant"
fi
[ -f summary.json ] && upload_item installer summary.json text/plain [ -f summary.json ] && upload_item installer summary.json text/plain
# Upload crash reporter files. # Upload crash reporter files.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment