Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
longzheng committed Dec 6, 2024
1 parent ab67e27 commit cb63249
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions install/local/install-scrypted-dependencies-win.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ svc.on("install", () => {
svc.on("start", () => {
console.log("Service started");
});
svc.on("error", (err) => {
console.log("Service error", err);
});
svc.install();
"@

Expand All @@ -119,15 +122,4 @@ Write-Output "Note that it is https and that you'll be asked to approve/ignore t

Start-Sleep -Seconds 30

Write-Output "scrypted.out.log"
Get-Content "$SCRYPTED_HOME\daemon\scrypted.out.log" | Write-Output

Write-Output "scrypted.wrapper.log"
Get-Content "$SCRYPTED_HOME\daemon\scrypted.wrapper.log" | Write-Output

Write-Output "scrypted.err.log"
Get-Content "$SCRYPTED_HOME\daemon\scrypted.err.log" | Write-Output

Write-Output $NPX_PATH

& $NPX_PATH -y scrypted serve
Get-EventLog -LogName Application -Newest 20 | Select-Object -Property *

0 comments on commit cb63249

Please sign in to comment.