Skip to content

Commit

Permalink
Create logs dir synchronously #128
Browse files Browse the repository at this point in the history
  • Loading branch information
schipiga committed Jul 16, 2018
1 parent 739c584 commit 61d2f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporter/stdout.js
Expand Up @@ -24,7 +24,7 @@ var sessionErrors = [];
var indents = 0;
var indent = () => Array(indents).join(" ");

fse.mkdirs(CONF.report.logsDir);
fse.mkdirsSync(CONF.report.logsDir);
var report = fs.createWriteStream(
path.resolve(CONF.report.logsDir, "stdout.log"), { flags : "w" });

Expand Down

0 comments on commit 61d2f4c

Please sign in to comment.