Merge pull request #859 from MODSetter/dev

fix: remove Out-Null from docker compose command in install.ps1 to al…
This commit is contained in:
Rohan Verma 2026-03-03 14:56:36 -08:00 committed by GitHub
commit 40a914ef46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -247,7 +247,7 @@ if ($MigrationMode) {
Write-Step "Starting all SurfSense services" Write-Step "Starting all SurfSense services"
Push-Location $InstallDir Push-Location $InstallDir
Invoke-NativeSafe { docker compose up -d } | Out-Null Invoke-NativeSafe { docker compose up -d }
Pop-Location Pop-Location
Write-Ok "All services started." Write-Ok "All services started."
@ -256,7 +256,7 @@ if ($MigrationMode) {
} else { } else {
Write-Step "Starting SurfSense" Write-Step "Starting SurfSense"
Push-Location $InstallDir Push-Location $InstallDir
Invoke-NativeSafe { docker compose up -d } | Out-Null Invoke-NativeSafe { docker compose up -d }
Pop-Location Pop-Location
Write-Ok "All services started." Write-Ok "All services started."
} }