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; }