generated from nhcarrigan/template
feat: yubikey scripts, clarify prompts in s3 script
Node.js CI / Lint and Test (push) Failing after 27s
Node.js CI / Lint and Test (push) Failing after 27s
This commit is contained in:
+2
-2
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user