Skip to content

Commit

Permalink
Fix python
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas committed Oct 14, 2024
1 parent bda222f commit b212c51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tests/Common/scripts/crossgen2_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@ async def create_debugging_file(self, ni_filename, debugging_files_dirname, plat

def _build_args_crossgen_il_file(self, il_filename, ni_filename, platform_assemblies_paths, target_os, target_arch):
args = []
args.append(self.dotnet)
if self.dotnet:
args.append(self.dotnet)
args.append(self.crossgen_executable_filename)
args.append('-r')
args.append('"' + platform_assemblies_paths + self.platform_directory_sep + '*.dll"' )
Expand Down

0 comments on commit b212c51

Please sign in to comment.