Skip to content

Commit

Permalink
always upload (#1383)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes authored Jun 23, 2023
1 parent 7234253 commit ad5c400
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/Sentry.Unity.Editor.iOS/SentryXcodeProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,9 @@ internal class SentryXcodeProject : IDisposable
internal static readonly string MainPath = Path.Combine("MainApp", "main.mm");
private readonly string _optionsPath = Path.Combine("MainApp", OptionsName);
private readonly string _uploadScript = @"
process_upload_symbols() {{
./{0} debug-files upload --force-foreground {1} $BUILT_PRODUCTS_DIR 2>&1 | tee ./sentry-symbols-upload.log
}}
export SENTRY_PROPERTIES=sentry.properties
if [ ""$ACTION"" = ""install"" ] ; then
echo ""Uploading debug symbols and bcsymbolmaps.""
process_upload_symbols
else
echo ""Skipping debug symbol upload because this is a non-install build.""
fi
echo ""Uploading debug symbols and bcsymbolmaps.""
./{0} debug-files upload --force-foreground {1} $BUILT_PRODUCTS_DIR 2>&1 | tee ./sentry-symbols-upload.log
";

private readonly IDiagnosticLogger? _logger = null;
Expand Down

0 comments on commit ad5c400

Please sign in to comment.