Skip to content

Commit

Permalink
Improve condition
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig committed Sep 14, 2023
1 parent c5c6fbe commit 7e88b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/common/process/rawProcessApis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export function execObservable(
subscriber.error(ex);
internalDisposables.forEach((d) => d.dispose());
});
if (options.stdinStr) {
if (options.stdinStr !== undefined) {
proc.stdin?.write(options.stdinStr);
proc.stdin?.end();
}
Expand Down

0 comments on commit 7e88b01

Please sign in to comment.