Skip to content

Commit

Permalink
Fixed quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Oden committed Jun 10, 2015
1 parent c0b425a commit 50bf4cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function fail (err) {
function openConfig (cb) {
var userHome = require('user-home');
if (process.platform !== 'win32' && userHome) {
userHome = path.join(userHome, ".cache");
userHome = path.join(userHome, '.cache');
}
var configpath = path.join(userHome || os.tmpdir(), configfile);
var content;
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function getConfigPath() {
var v8flags = require('./');
var userHome = require('user-home');
if (process.platform !== 'win32' && userHome) {
userHome = path.join(userHome, ".cache");
userHome = path.join(userHome, '.cache');
}
return path.join(userHome, v8flags.configfile);
}
Expand Down

0 comments on commit 50bf4cf

Please sign in to comment.