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

Commit

Permalink
Removed whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
aleitner committed Oct 20, 2016
1 parent a037ae9 commit 0855fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ module.exports.getFreeSpace = function(path, callback) {
if (process.platform === 'win32') {
diskDrive += ':\\';
}

if (self.existsSync(diskDrive)) {
if (fs.statSync(path).dev === fs.statSync(diskDrive).dev) {
// The `df` command on linux returns KB by default, so we need to
Expand Down

0 comments on commit 0855fee

Please sign in to comment.