File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
packages/@angular/cli/bin Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22'use strict' ;
33
4- // Provide a title to the process in `ps`
5- process . title = '@angular/cli' ;
4+ // Provide a title to the process in `ps`.
5+ // Due to an obscure Mac bug, do not start this title with any symbol.
6+ process . title = 'ng' ;
67
78require ( '../lib/bootstrap-local' ) ;
89require ( '../packages/@angular/cli/bin/ng' ) ;
Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22'use strict' ;
33
4- // Provide a title to the process in `ps`
5- process . title = '@angular/cli' ;
4+ // Provide a title to the process in `ps`.
5+ // Due to an obscure Mac bug, do not start this title with any symbol.
6+ process . title = 'ng' ;
67
78const CliConfig = require ( '../models/config' ) . CliConfig ;
89const Version = require ( '../upgrade/version' ) . Version ;
You can’t perform that action at this time.
0 commit comments