This commit is contained in:
Alan K 2014-07-16 17:14:11 -04:00
parent 2c005d0390
commit 9d93191672
4 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "filer",
"version": "0.0.17",
"version": "0.0.18",
"main": "dist/filer.js",
"devDependencies": {
"mocha": "1.17.1",

3
dist/filer.js vendored
View File

@ -12770,6 +12770,9 @@ function open_file(context, path, flags, callback) {
function read_directory_data(error, result) {
if(error) {
callback(error);
} else if(result.mode !== MODE_DIRECTORY) {
console.log(result);
callback(new Errors.ENOENT());
} else {
directoryNode = result;
context.get(directoryNode.data, check_if_file_exists);

6
dist/filer.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
"idb",
"websql"
],
"version": "0.0.17",
"version": "0.0.18",
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
"homepage": "http://js-platform.github.io/filer",
"bugs": "https://github.com/js-platform/filer/issues",