finish correcting paths. fixes #1776.
authorSteve Hackbarth <stephenhackbarth@gmail.com>
Mon, 25 Aug 2014 02:42:14 +0000 (21:42 -0500)
committerSteve Hackbarth <stephenhackbarth@gmail.com>
Mon, 25 Aug 2014 02:42:14 +0000 (21:42 -0500)
scripts/lib/util/inspect_database.js

index 484361d..2f1e849 100644 (file)
@@ -36,9 +36,9 @@ regexp:true, undef:true, strict:true, trailing:true, white:true */
         return pathFromExtension(row.ext_name, row.ext_location);
       });
 
-      paths.unshift(path.join(__dirname, "../../enyo-client")); // core path
-      paths.unshift(path.join(__dirname, "../../lib/orm")); // lib path
-      paths.unshift(path.join(__dirname, "../../foundation-database")); // foundation path
+      paths.unshift(path.join(__dirname, "../../../enyo-client")); // core path
+      paths.unshift(path.join(__dirname, "../../../lib/orm")); // lib path
+      paths.unshift(path.join(__dirname, "../../../foundation-database")); // foundation path
       done(null, _.compact(paths));
     });
   };