Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblock committed Apr 29, 2024
1 parent ff34cee commit 63f9b5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/_add-remove.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function _addRemove (params, aws, callback) {
let allowed = [
'testing',
'staging',
'production'
'production',
]

// IEEE 1003.1-2001 does not allow lowercase, so consider this a compromise for the Windows folks in the house
Expand Down Expand Up @@ -46,7 +46,7 @@ module.exports = function _addRemove (params, aws, callback) {
Name: `/${app}/${env}/${name}`,
Value: `${value}`,
Type: 'SecureString',
Overwrite: true
Overwrite: true,
})
.then(() => done())
.catch(done)
Expand Down
2 changes: 1 addition & 1 deletion src/_get-env.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function _all ({ aws, inventory, update }, callback) {
Recursive: true,
MaxResults: 10,
WithDecryption: true,
paginate: true
paginate: true,
})
.then(data => {
let result = data.Parameters.map(function (param) {
Expand Down
2 changes: 1 addition & 1 deletion src/_write/prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ ${production}
callback()
}
else callback()
}
},
], callback)
}

0 comments on commit 63f9b5f

Please sign in to comment.