This commit is contained in:
Steven Tracey 2023-12-20 09:54:08 -06:00
parent 6cf4c75e36
commit 41c644c6eb

2
app.js
View File

@ -27,7 +27,7 @@ function generateQuickCmd() {
body: reqData,
mode: "cors"
}).then(res => res.json().then(json => {
document.getElementById("script").innerText = "curl -s " + json.url + "/raw | bash";
document.getElementById("script").innerText = "curl -s " + json.url + " | bash";
}));
}