Skip to content

Commit

Permalink
fix(frontend): remove unused double dashes to avoid yarn's warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Teamop authored and vsavkin committed Jul 3, 2019
1 parent df77d6c commit 4297aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/workspace/src/command-line/affected.ts
Expand Up @@ -186,12 +186,12 @@ async function runCommand(
await runAll(
projects.map(app => {
return ngCommands.includes(command)
? `ng -- ${command} --project=${app} ${transformArgs(
? `ng ${command} --project=${app} ${transformArgs(
args,
app,
projectMetadata.get(app)
).join(' ')} `
: `ng -- run ${app}:${command} ${transformArgs(
: `ng run ${app}:${command} ${transformArgs(
args,
app,
projectMetadata.get(app)
Expand Down

0 comments on commit 4297aef

Please sign in to comment.