Skip to content

Commit

Permalink
Merge pull request #49 from lifeomic/remove-unneeded-space
Browse files Browse the repository at this point in the history
Remove space at end of glob search string
  • Loading branch information
xdumaine authored Mar 15, 2022
2 parents df2c9f4 + 8e32291 commit 7416a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const yargs = require('yargs');
const ValidationError = require('./ValidationError');
const alphaProxy = require('./alphaProxy');

const plugins = glob.sync(path.join(__dirname, 'plugins/*.js '))
const plugins = glob.sync(path.join(__dirname, 'plugins/*.js'))
.map(require)
.map((loader) => loader(yargs));

Expand Down

0 comments on commit 7416a4b

Please sign in to comment.