diff options
author | Stefan <mu.stefan@googlemail.com> | 2016-06-08 19:43:53 +0200 |
---|---|---|
committer | Stefan <mu.stefan@googlemail.com> | 2016-06-08 19:43:53 +0200 |
commit | e11decc6f890fce9f690753d6730561a43a5eb5b (patch) | |
tree | c51c5a0c33cbac27ce5e936b55d041621a82a3b6 /bin | |
parent | 44370f11be1861fda307b155b9dcf6059d49f925 (diff) | |
download | etherpad-lite-e11decc6f890fce9f690753d6730561a43a5eb5b.zip |
Fix module paths for db migration script
Diffstat (limited to 'bin')
-rw-r--r-- | bin/migrateDirtyDBtoRealDB.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/migrateDirtyDBtoRealDB.js b/bin/migrateDirtyDBtoRealDB.js index 393c3081..c616714a 100644 --- a/bin/migrateDirtyDBtoRealDB.js +++ b/bin/migrateDirtyDBtoRealDB.js @@ -7,8 +7,8 @@ require("ep_etherpad-lite/node_modules/npm").load({}, function(er,npm) { // file before using this script, just to be safe. var settings = require("ep_etherpad-lite/node/utils/Settings"); - var dirty = require("dirty")('var/dirty.db'); - var ueberDB = require("../src/node_modules/ueberDB"); + var dirty = require("../src/node_modules/dirty")('var/dirty.db'); + var ueberDB = require("../src/node_modules/ueberdb2"); var log4js = require("../src/node_modules/log4js"); var dbWrapperSettings = { "cache": "0", // The cache slows things down when you're mostly writing. |