codify-plugin-lib 1.0.182-beta12 → 1.0.182-beta13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,7 +19,7 @@ EventEmitter.defaultMaxListeners = 1000;
|
|
|
19
19
|
export class BackgroundPty {
|
|
20
20
|
historyIgnore = Utils.getShell() === Shell.ZSH ? { HISTORY_IGNORE: '*' } : { HISTIGNORE: '*' };
|
|
21
21
|
basePty = pty.spawn(this.getDefaultShell(), ['-i'], {
|
|
22
|
-
env: { ...process.env
|
|
22
|
+
env: { ...process.env },
|
|
23
23
|
name: nanoid(6),
|
|
24
24
|
handleFlowControl: true
|
|
25
25
|
});
|
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@ EventEmitter.defaultMaxListeners = 1000;
|
|
|
22
22
|
export class BackgroundPty implements IPty {
|
|
23
23
|
private historyIgnore = Utils.getShell() === Shell.ZSH ? { HISTORY_IGNORE: '*' } : { HISTIGNORE: '*' };
|
|
24
24
|
private basePty = pty.spawn(this.getDefaultShell(), ['-i'], {
|
|
25
|
-
env: { ...process.env
|
|
25
|
+
env: { ...process.env },
|
|
26
26
|
name: nanoid(6),
|
|
27
27
|
handleFlowControl: true
|
|
28
28
|
});
|