Skip to content

Commit

Permalink
feat(progamableApi): using const now
Browse files Browse the repository at this point in the history
Signed-off-by: BorntraegerMarc <marc.borntraeger@gmail.com>
  • Loading branch information
BorntraegerMarc authored and wzrdtales committed Mar 21, 2018
1 parent e62b2f7 commit a69e221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/set-default-argv.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ module.exports = function (internals, isModule) {
.describe('log-level', 'Set the log-level, for example sql|warn')
.string('log-level');
} else {
var _internalsArgv = Object.assign(defaultConfig, internals.cmdOptions);
const _internalsArgv = Object.assign(defaultConfig, internals.cmdOptions);
internals.argv = {
get argv () {
return _internalsArgv;
Expand Down

0 comments on commit a69e221

Please sign in to comment.