Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendon Lees committed Jan 29, 2021
1 parent 8ca5d80 commit 6b30f83
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/commands/secrets/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import yaml from 'js-yaml'
type Env = {[env: string]: string}

export default class SecretsSync extends Command {
static description = 'describe the command here'
static description = 'Add/Update multiple secrets from one file.'

static flags = {
help: flags.help({char: 'h'}),
Expand Down Expand Up @@ -43,11 +43,13 @@ export default class SecretsSync extends Command {
}),
}

static args = [{
name: 'file',
required: true,
description: 'Path to the file to read from.'
}]
static args = [
{
name: 'file',
required: true,
description: 'Path to the file to read from.',
},
]

async run() {
const {args, flags} = this.parse(SecretsSync)
Expand Down

0 comments on commit 6b30f83

Please sign in to comment.