From 2d28f30578741cb65afa2e9a0fe67aea8a20f591 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 05:26:43 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Remove=20unnecessary=20escaping?= =?UTF-8?q?=20of=20single=20quotes=20in=20SFTP=20fallback=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/utils/deploy-pokedex.js | 1 - 1 file changed, 1 deletion(-) diff --git a/code/utils/deploy-pokedex.js b/code/utils/deploy-pokedex.js index d8866e0..b75763e 100644 --- a/code/utils/deploy-pokedex.js +++ b/code/utils/deploy-pokedex.js @@ -364,7 +364,6 @@ async function deploy() { ` ⚠️ SFTP failed for ${path.basename(file.local)}, using cat fallback...` ); const fileContent = fs.readFileSync(file.local, 'utf8'); - const escapedContent = fileContent.replace(/'/g, "'\\''"); const catResult = await ssh.execCommand( `cat > '${file.remote}' << 'EOFMARKER'\n${fileContent}\nEOFMARKER` );