Skip to content

Commit

Permalink
Style changes..
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven McDowall committed Sep 9, 2015
1 parent 40f3267 commit d3456f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/update-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = function (options, done) {
// Change the file permissions so we can over-write the package. Then we'll write the package
// and then change the file permissions back to read-only.
//
Fs.chmodSync( packagePath, "0644" ) ;
Fs.writeFile( packagePath, JSON.stringify(packageContents, null, 2), done);
Fs.chmodSync( packagePath, "0444" ) ;
Fs.chmodSync(packagePath, '0644') ;
Fs.writeFile(packagePath, JSON.stringify(packageContents, null, 2), done);
Fs.chmodSync(packagePath, '0444') ;
};

0 comments on commit d3456f0

Please sign in to comment.