Create /dev/tty on D: also

This commit is contained in:
Matthias Pigulla 2021-03-02 15:55:31 +00:00
parent e0d767fd8e
commit 8cdc63104f
3 changed files with 4 additions and 3 deletions

View file

@ -23,6 +23,8 @@ try {
// Work around https://github.com/PowerShell/openssh-portable/pull/447 by creating a \dev\tty file
fs.mkdirSync('c:\\dev');
fs.closeSync(fs.openSync('c:\\dev\\tty', 'a'));
fs.mkdirSync('d:\\dev');
fs.closeSync(fs.openSync('d:\\dev\\tty', 'a'));
home = os.homedir();
} else {