fix: resolve wsl_v5 whitespace issue in deploy

Add required blank line before assignment statement in
cleanupCancelledDeploy.
This commit is contained in:
clawbot 2026-02-20 02:50:32 -08:00
parent a808f0c6a8
commit fc7ba6135c

View File

@ -726,6 +726,7 @@ func (svc *Service) cleanupCancelledDeploy(
} else { } else {
svc.log.Info("cleaned up build dir from cancelled deploy", svc.log.Info("cleaned up build dir from cancelled deploy",
"app", app.Name, "path", dirPath) "app", app.Name, "path", dirPath)
_ = deployment.AppendLog(ctx, "Cleaned up build directory") _ = deployment.AppendLog(ctx, "Cleaned up build directory")
} }
} }