Skip to content

Commit

Permalink
Fixed op priority
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed Oct 5, 2018
1 parent 6c3c5c8 commit 1bc9b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ function parse_argv(cb) {
process.argv.slice(2).forEach(function (val, index) {
let m;
if (index === 0) {
if (m = val.match(/^(.+\.json)$/) && fs.existsSync(path.resolve(m[1]))) {
if ((m = val.match(/^(.+\.json)$/)) && fs.existsSync(path.resolve(m[1]))) {
console_file = m[1];
load_config_file();
return;
Expand Down

0 comments on commit 1bc9b39

Please sign in to comment.