Skip to content

Commit

Permalink
Add LinuxArm64 debug symbol upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tustanivsky committed Nov 12, 2024
1 parent c3945b9 commit 0d97c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin-dev/Scripts/upload-debug-symbols-win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if "%TargetType%"=="Editor" (

if "%TargetPlatform%"=="Win64" (
set CliExec=%PluginPath:"=%\Source\ThirdParty\CLI\sentry-cli-Windows-x86_64.exe
) else if "%TargetPlatform%"=="Linux" (
) else if "%TargetPlatform%"=="Linux" OR "%TargetPlatform%"=="LinuxArm64" (
set CliExec=%PluginPath:"=%\Source\ThirdParty\CLI\sentry-cli-Windows-x86_64.exe
) else if "%TargetPlatform%"=="Android" (
echo Warning: Sentry: Debug symbols upload for Android is handled by Sentry's gradle plugin if enabled
Expand Down
2 changes: 1 addition & 1 deletion plugin-dev/Scripts/upload-debug-symbols.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fi

if [ $targetPlatform = "IOS" ] || [ $targetPlatform = "Mac" ]; then
SENTRY_CLI_EXEC="$pluginPath/Source/ThirdParty/CLI/sentry-cli-Darwin-universal"
elif [ $targetPlatform = "Linux" ]; then
elif [ $targetPlatform = "Linux" ] || [ $targetPlatform = "LinuxArm64" ]; then
SENTRY_CLI_EXEC="$pluginPath/Source/ThirdParty/CLI/sentry-cli-Linux-x86_64"
elif [ $targetPlatform = "Android" ]; then
echo "Sentry: Debug symbols upload for Android is handled by Sentry's gradle plugin if enabled"
Expand Down

0 comments on commit 0d97c10

Please sign in to comment.