mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
fix: watch script broken on Windows (#8106)
Fixes #8083 Signed-off-by: Jeff MAURY <jmaury@redhat.com>
This commit is contained in:
parent
e7ef48d7a0
commit
7e2c60389a
1 changed files with 1 additions and 0 deletions
|
|
@ -136,6 +136,7 @@ const setupUiPackageWatcher = () => {
|
|||
spawnProcess = spawn(exe, ['-w'], {
|
||||
cwd: './packages/ui/',
|
||||
env: { ...process.env },
|
||||
shell: process.platform === 'win32',
|
||||
});
|
||||
|
||||
spawnProcess.stdout.on('data', d => d.toString().trim() && logger.warn(d.toString(), { timestamp: true }));
|
||||
|
|
|
|||
Loading…
Reference in a new issue