Skip to content

Commit

Permalink
fix: Do not prompt for analytics (#757)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbriggs authored and mrmeku committed Jul 18, 2019
1 parent 3fd4ffc commit aca0c4a
Show file tree
Hide file tree
Showing 2 changed files with 495 additions and 496 deletions.
6 changes: 5 additions & 1 deletion apps/electron/src/app/pseudo-terminal.factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ export const nodePtyPseudoTerminalFactory: PseudoTerminalFactory = ({
const DEFAULT_ROWS = 24;
const DEFAULT_COLS = 80;
const opts = {
cwd,
cols: DEFAULT_COLS,
rows: DEFAULT_ROWS,
cwd
env: {
...process.env,
CI: 'true'
}
};

let commandRunning: IPty;
Expand Down
Loading

0 comments on commit aca0c4a

Please sign in to comment.