Skip to content

Commit

Permalink
fix ci semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
avirtopeanu-ionos committed Jun 21, 2024
1 parent a4ffd1f commit 6cdb88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ export default class Run extends Command {
/* first of all check credentials env vars */
if (process.env.IONOS_TOKEN === undefined) {
if (process.env.IONOS_USERNAME === undefined) {
this.error('Either IONOS_TOKEN env var must be set or IONOS_USERNAME env var is missing');
this.error('Either IONOS_TOKEN env var must be set or IONOS_USERNAME env var is missing')
}

if (process.env.IONOS_PASSWORD === undefined) {
this.error('Either IONOS_TOKEN env var must be set or IONOS_PASSWORD env var is missing');
this.error('Either IONOS_TOKEN env var must be set or IONOS_PASSWORD env var is missing')
}
}

Expand Down

0 comments on commit 6cdb88c

Please sign in to comment.