Fix output order 2

This commit is contained in:
vorotamoroz
2024-11-09 10:31:34 +09:00
parent 3a3aabfd11
commit 6d472d17fd

View File

@@ -35,8 +35,8 @@ async function main() {
} }
const encryptedConf = encodeURIComponent(await encrypt(JSON.stringify(conf), uri_passphrase, false)); const encryptedConf = encodeURIComponent(await encrypt(JSON.stringify(conf), uri_passphrase, false));
const theURI = `${URIBASE}${encryptedConf}`; const theURI = `${URIBASE}${encryptedConf}`;
console.log(theURI);
console.log("\nYour passphrase of Setup-URI is: ", uri_passphrase); console.log("\nYour passphrase of Setup-URI is: ", uri_passphrase);
console.log("This passphrase is never shown again, so please note it in a safe place.") console.log("This passphrase is never shown again, so please note it in a safe place.")
console.log(theURI);
} }
await main(); await main();