Skip to content

Commit

Permalink
style(bin/options.js): Revert un-Prettier comment per Boneskull's req…
Browse files Browse the repository at this point in the history
…uest
  • Loading branch information
plroebuck committed Apr 28, 2018
1 parent 9daaa5c commit 792b340
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ function getOptions() {
: process.argv[process.argv.indexOf('--opts') + 1];

try {
const opts = fs.readFileSync(optsPath, 'utf8')
const opts = fs
.readFileSync(optsPath, 'utf8')
.replace(/\\\s/g, '%20')
.split(/\s/)
.filter(Boolean)
Expand Down

0 comments on commit 792b340

Please sign in to comment.