Skip to content

Commit 937d2f8

Browse files
committed
fix(ng-dev): fix git clean command (#3045)
The command was incorrect. PR Close #3045
1 parent dbc0e07 commit 937d2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ng-dev/release/publish/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ export abstract class ReleaseAction {
368368
this.git.run(['checkout', '-q', 'FETCH_HEAD', '--detach']);
369369
try {
370370
// Remove node_modules even if they are ignored. (We do not want to run -dxf to avoid deleting other files suchs as .ng-dev-lock)
371-
this.git.run(['clean', 'git clean -dfX **/node_modules']);
371+
this.git.run(['clean', '-qdfX **/node_modules']);
372372
} catch {}
373373
}
374374

0 commit comments

Comments
 (0)