Skip to content
This repository has been archived by the owner on Feb 5, 2018. It is now read-only.

Commit

Permalink
chore(lint): cleanup code to match style-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Coe committed Apr 7, 2016
1 parent 64ba3be commit de63034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.js
Expand Up @@ -9,7 +9,7 @@ var tempfile = require('tempfile');
var _ = require('lodash');
var resolve = require('path').resolve;
var Readable = require('stream').Readable;
var rimraf = require('rimraf')
var rimraf = require('rimraf');

var cli = meow({
help: [
Expand Down Expand Up @@ -124,7 +124,7 @@ if (options.append) {
.pipe(fs.createWriteStream(outfile))
.on('finish', function() {
standardChangelog.checkpoint('output changes to %s', [outfile]);
rimraf.sync(tmp)
rimraf.sync(tmp);
});
});
}

0 comments on commit de63034

Please sign in to comment.