chore: Format code.
This commit is contained in:
parent
41013f46bb
commit
9d7c24a813
4 changed files with 15 additions and 9 deletions
|
@ -43,7 +43,10 @@ export async function run(
|
|||
"Asks for a password. Hides output",
|
||||
);
|
||||
|
||||
addCommand.option("-s, --service-account, --service", "Turns the user into a service account");
|
||||
addCommand.option(
|
||||
"-s, --service-account, --service",
|
||||
"Turns the user into a service account",
|
||||
);
|
||||
|
||||
addCommand.action(
|
||||
async (
|
||||
|
@ -93,7 +96,7 @@ export async function run(
|
|||
email,
|
||||
password,
|
||||
|
||||
allowUnsafeGlobalTokens: options.isServiceAccount
|
||||
allowUnsafeGlobalTokens: options.isServiceAccount,
|
||||
});
|
||||
|
||||
if (response.status != 200) {
|
||||
|
|
|
@ -13,7 +13,7 @@ export async function runCopyID(
|
|||
stream.write(
|
||||
"Hey there! I think you're using ssh-copy-id. If this is an error, you may close this terminal.\n",
|
||||
);
|
||||
|
||||
|
||||
stream.write("Please wait...\n");
|
||||
|
||||
const keyData = await readFromKeyboard(stream, true);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { readFile, writeFile, mkdir } from "node:fs/promises";
|
||||
import { format } from "node:util";
|
||||
import { timingSafeEqual } from "node:crypto";
|
||||
import { format } from "node:util";
|
||||
|
||||
import parseArgsStringToArgv from "string-argv";
|
||||
import baseAxios from "axios";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue