We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c1ef3 commit e86cc0bCopy full SHA for e86cc0b
src/WebJobs.Script/Description/ScriptFunctionInvoker.cs
@@ -86,7 +86,7 @@ public override async Task Invoke(object[] parameters)
86
await ExecuteScriptAsync(bashPath, scriptHostArguments, parameters);
87
break;
88
case "fsx":
89
- scriptHostArguments = string.Format("/c fsi.exe {0}", _scriptFilePath);
+ scriptHostArguments = string.Format("/c fsi.exe \"{0}\"", _scriptFilePath);
90
await ExecuteScriptAsync("cmd", scriptHostArguments, parameters);
91
92
}
0 commit comments