Skip to content

Commit

Permalink
fix(core): remove extra space in dotnet run --project
Browse files Browse the repository at this point in the history
Fixes #223
  • Loading branch information
AgentEnder committed Oct 19, 2021
1 parent 4c469fb commit bf67bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dotnet/src/lib/core/dotnet.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class DotNetClient {
): ChildProcess {
let cmd = watch
? `watch --project ${project} run`
: `run -- project ${project}`;
: `run --project ${project}`;
if (parameters) {
parameters = swapArrayFieldValueUsingMap(parameters, 'flag', runKeyMap);
const paramString = parameters ? getParameterString(parameters) : '';
Expand Down

0 comments on commit bf67bf3

Please sign in to comment.