mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
fix: yarn watch failure on Windows (#6231)
Fixes #6228 Signed-off-by: Jeff MAURY <jmaury@redhat.com>
This commit is contained in:
parent
5753fd112c
commit
782d67c1bd
1 changed files with 2 additions and 1 deletions
|
|
@ -132,7 +132,8 @@ const setupUiPackageWatcher = () => {
|
|||
spawnProcess = null;
|
||||
}
|
||||
|
||||
spawnProcess = spawn(join(__dirname, '../node_modules/.bin/svelte-package'), ['-w'], {
|
||||
const exe = join(__dirname, '..', 'node_modules', '.bin', 'svelte-package').concat(process.platform === 'win32' ? '.cmd': '');
|
||||
spawnProcess = spawn(exe, ['-w'], {
|
||||
cwd: './packages/ui/',
|
||||
env: { ...process.env },
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue