Initial import: Music_Server, MusicFree, catalog-sync

This commit is contained in:
2026-05-23 16:51:14 +08:00
commit 069af30dba
847 changed files with 179878 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
param(
[switch]$SkipHealthCheck
)
$ErrorActionPreference = "Stop"
$RepoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
$DelegateScript = Join-Path $RepoRoot "scripts\catalogsync\deploy_to_nas.ps1"
if (-not (Test-Path -LiteralPath $DelegateScript)) {
throw "Deploy script not found: $DelegateScript"
}
$arguments = @(
"-ExecutionPolicy", "Bypass",
"-File", $DelegateScript
)
if ($SkipHealthCheck) {
$arguments += "-SkipHealthCheck"
}
powershell @arguments
exit $LASTEXITCODE