feat: yubikey scripts, clarify prompts in s3 script
Node.js CI / Lint and Test (push) Failing after 27s

This commit is contained in:
2025-12-10 19:14:22 -08:00
parent 64e2b4419c
commit dd294879b9
4 changed files with 125 additions and 2 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ if (accessKeyId === undefined || secretAccessKey === undefined) {
}
const fileName = await input({
message: "Enter the ABSOLUTE PATH of the file to upload",
message: "Enter the ABSOLUTE PATH of the file to upload, including leading slash:",
});
if (fileName === "") {
throw new Error("File name is not set");
@@ -24,7 +24,7 @@ if (fileName === "") {
const file = await readFile(fileName);
const uploadPath = await input({
message: "Enter the PATH to upload the file to",
message: "Enter the PATH to upload the file to, WITHOUT leading slash:",
});
if (uploadPath === "") {
throw new Error("Upload path is not set");