codify-plugin-lib 1.0.165 → 1.0.166
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.
|
@@ -99,6 +99,7 @@ export class BackgroundPty {
|
|
|
99
99
|
await this.promiseQueue.run(async () => {
|
|
100
100
|
let outputBuffer = '';
|
|
101
101
|
return new Promise(resolve => {
|
|
102
|
+
this.basePty.write('set +o history;\n');
|
|
102
103
|
this.basePty.write('unset PS1;\n');
|
|
103
104
|
this.basePty.write('unset PS0;\n');
|
|
104
105
|
this.basePty.write('echo setup complete\\"\n');
|
package/package.json
CHANGED
|
@@ -123,6 +123,7 @@ export class BackgroundPty implements IPty {
|
|
|
123
123
|
let outputBuffer = '';
|
|
124
124
|
|
|
125
125
|
return new Promise(resolve => {
|
|
126
|
+
this.basePty.write('set +o history;\n');
|
|
126
127
|
this.basePty.write('unset PS1;\n');
|
|
127
128
|
this.basePty.write('unset PS0;\n')
|
|
128
129
|
this.basePty.write('echo setup complete\\"\n')
|