不要怂,就是干,撸起袖子干!

Commit a6e249a2 by Mick Hansen

refactor(connections): fix sqlite3 missing package error

1 parent 17fc2789
Showing with 1 additions and 1 deletions
...@@ -13,7 +13,7 @@ ConnectionManager = function(dialect, sequelize) { ...@@ -13,7 +13,7 @@ ConnectionManager = function(dialect, sequelize) {
try { try {
this.lib = require(sequelize.config.dialectModulePath || 'sqlite3').verbose(); this.lib = require(sequelize.config.dialectModulePath || 'sqlite3').verbose();
} catch (err) { } catch (err) {
throw new Error('Please install mariasql package manually'); throw new Error('Please install sqlite3 package manually');
} }
}; };
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!