File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -621,6 +621,7 @@ void ExtractDebugInfoAndStripSymbols()
621621
622622 var fpm = Fpm . Value ;
623623 var gzip = GZip . Value ;
624+ var chmod = Chmod . Value ;
624625 var packageName = "datadog-dotnet-apm" ;
625626
626627 var workingDirectory = ArtifactsDirectory / $ "linux-{ LinuxArchitectureIdentifier } ";
@@ -638,6 +639,10 @@ void ExtractDebugInfoAndStripSymbols()
638639 RenameFile ( sourceFile , newName ) ;
639640 }
640641
642+ // somehow the permissions are lost along the way, ensure they are correctly set here
643+ var createLogPathScript = ( IsArm64 ? TracerHomeDirectory : MonitoringHomeDirectory ) / "createLogPath.sh" ;
644+ chmod . Invoke ( "+x " + createLogPathScript ) ;
645+
641646 ExtractDebugInfoAndStripSymbols ( ) ;
642647
643648 foreach ( var packageType in LinuxPackageTypes )
You can’t perform that action at this time.
0 commit comments