From 09611160113862fad94adbd9835ae7aae3c40aef Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 26 Nov 2022 08:48:26 +0900 Subject: [PATCH] Fix crossgen2 arguments (#4342) * Fix crossgen2 arguments --- lib/compilers/dotnet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts index 73409c318f5..d0fe8c3212b 100644 --- a/lib/compilers/dotnet.ts +++ b/lib/compilers/dotnet.ts @@ -180,7 +180,7 @@ class DotNetCompiler extends BaseCompiler { const crossgen2Options = [ crossgen2Path, '-r', - path.join(bclPath, '*'), + path.join(bclPath, '/'), dllPath, '-o', 'CompilerExplorer.r2r.dll',