mirror of
https://github.com/zen-browser/desktop.git
synced 2026-04-20 14:25:38 +00:00
13 lines
220 B
PowerShell
13 lines
220 B
PowerShell
|
|
Remove-Item -Recurse -Force engine
|
|
Remove-Item -Recurse -Force .surfer
|
|
|
|
npm run init
|
|
|
|
$job = Start-Job -ScriptBlock {
|
|
npm run build
|
|
}
|
|
|
|
# Wait for job to complete with timeout (in seconds)
|
|
$job | Wait-Job -Timeout 5
|