diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-01 12:58:53 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-01 12:58:53 -0400 |
commit | 1f6213a58499d3f47f6ec74205ed2837bac83c29 (patch) | |
tree | 653e90dea31a2345e69d0a75bb976fcf101d7559 /build.sh | |
parent | 00d8d4e9cdff7b5b584e7bd4f30c46902263c033 (diff) |
SL-19243: Try to list contents of xcarchive.zip
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -613,6 +613,13 @@ then end_section "Upload Extension $extension" done fi + # SL-19243 HACK: List contents of xcarchive.zip + if [[ "$arch" == "Darwin" ]] + then + app_dir="${build_dir}/newview/${variant}" + xcarchive="$(ls -d "${app_dir}"/*.xcarchive.zip)" + unzip -l "$xcarchive" + fi fi fi end_section "Uploads" |