Remove unnecessary line

This commit is contained in:
Ryan Dahl
2011-08-09 18:05:50 -07:00
parent b3bc009a89
commit 3ce4adf3c6

View File

@@ -56,7 +56,6 @@ exports.ddCommand = function(filename, kilobytes) {
if (process.platform == 'win32') {
return 'fsutil.exe file createnew "' + filename + '" ' + (kilobytes * 1024);
} else {
var blocks = Integer(size / 1024);
return 'dd if=/dev/zero of="' + filename + '" bs=1024 count=' + kilobytes;
}
};