From c54b46c76073b06cb2b80110c07e0d07b6cd679b Mon Sep 17 00:00:00 2001 From: elseif Date: Fri, 26 Sep 2025 13:42:03 +0800 Subject: [PATCH] Update index.html Signed-off-by: elseif --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index a10bdae..5462d8e 100644 --- a/index.html +++ b/index.html @@ -767,10 +767,10 @@ // Update command display based on selected tool and version function updateCommand(version) { const tool = document.querySelector('input[name="tool"]:checked').value; - const _version = version===undefined?"": `VERSION=${version} ` + const _version = version===undefined?"": `VERSION=${version} ` const cmd = tool === "curl" - ? `
${_version}bash \<(curl https://mikrotik.ltd/chr.sh)
` - : `
${_version}bash \<(wget -O - https://mikrotik.ltd/chr.sh)
`; + ? `
${_version}bash <(curl https://mikrotik.ltd/chr.sh)
` + : `
${_version}bash <(wget -O - https://mikrotik.ltd/chr.sh)
`; commandDiv.innerHTML = cmd; }