Skip to content

Commit

Permalink
fix migration pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Stohl committed Dec 24, 2020
1 parent c29df0a commit 480f95c
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "follow",
"version": "0.2.60",
"version": "0.2.61",
"description": "Decentralized, censorship resistant social media and bulletin board on IPFS",
"productName": "follow",
"author": "iohzrd <iohzrd@gmail.com>",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src-electron/identity/index.js
Expand Up @@ -66,7 +66,7 @@ module.exports = async function(ctx) {
"up",
{
config: knex_config,
migrations: path.resolve("./src-electron/identity/db/migrations")
migrations: path.join(__statics, "/migrations/")
},
logger.info
);
Expand Down
1 change: 1 addition & 0 deletions src-electron/main-process/electron-main.js
Expand Up @@ -43,6 +43,7 @@ function handleError(err) {
}

logger.error(err);
logger.error(err.stack);
criticalErrorDialog(err);
}
process.on("uncaughtException", handleError);
Expand Down

0 comments on commit 480f95c

Please sign in to comment.