From 1c40fca61dde3cdb99df51dcd9a6e0a5c10d3a7a Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 05:26:26 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20syntax=20error=20in=20catc?= =?UTF-8?q?h=20block=20by=20removing=20empty=20parentheses?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/utils/deploy-pokedex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils/deploy-pokedex.js b/code/utils/deploy-pokedex.js index 0032b6f..d8866e0 100644 --- a/code/utils/deploy-pokedex.js +++ b/code/utils/deploy-pokedex.js @@ -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...`