🐛 Fix syntax error in catch block by removing empty parentheses

This commit is contained in:
2026-01-28 05:26:26 +00:00
parent 16c27a8cd7
commit 1c40fca61d

View File

@@ -358,7 +358,7 @@ async function deploy() {
try {
await ssh.putFile(file.local, file.remote);
console.log(`${path.basename(file.local)}`);
} catch () {
} catch {
// If SFTP fails, fall back to cat method
console.log(
` ⚠️ SFTP failed for ${path.basename(file.local)}, using cat fallback...`