From 8abfc345fc40f68571fc41d35e13e4a27d8dadd0 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Wed, 11 Sep 2024 17:42:12 +0200 Subject: [PATCH] fix: typo on credentials --- src/commands/api.ts | 2 +- src/commands/deploy.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/api.ts b/src/commands/api.ts index 1c5d7f1..de6509c 100644 --- a/src/commands/api.ts +++ b/src/commands/api.ts @@ -38,7 +38,7 @@ export default class Api extends Command { ' api [-c file] [-n name] [-t path] [-m method] [-d dataJsonString]\n' + ' api [-c file] -u url [-p password] [-n name] [-t path] [-m method] [-d dataJsonString]\n' + ' Use --caproverName to use an already logged in CapRover machine\n' + - ' Use --caproverUrl and --caproverPassword to login on the fly to a CapRover machine, if also --caproverName is present, login credetials are stored locally' + ' Use --caproverUrl and --caproverPassword to login on the fly to a CapRover machine, if also --caproverName is present, login credentials are stored locally' protected description = 'Call a generic API on a specific CapRover machine. Use carefully only if you really know what you are doing!' diff --git a/src/commands/deploy.ts b/src/commands/deploy.ts index ad9dfee..b419c8e 100644 --- a/src/commands/deploy.ts +++ b/src/commands/deploy.ts @@ -49,7 +49,7 @@ export default class Deploy extends Command { ' deploy [-c file] [-n name] [-a app] [-b branch | -t tarFile | -i image]\n' + ' deploy [-c file] -u url [-p password] [-n name] [-a app] [-b branch | -t tarFile | -i image]\n' + ' Use --caproverName to use an already logged in CapRover machine\n' + - ' Use --caproverUrl and --caproverPassword to login on the fly to a CapRover machine, if also --caproverName is present, login credetials are stored locally\n' + + ' Use --caproverUrl and --caproverPassword to login on the fly to a CapRover machine, if also --caproverName is present, login credentials are stored locally\n' + ' Use one among --branch, --tarFile, --imageName' protected description =