This repository was archived by the owner on Jan 14, 2020. It is now read-only.
This repository was archived by the owner on Jan 14, 2020. It is now read-only.
Process never ends when migrating #200
Open
Description
Right now when we do a migration, e.g. with
npx truffle migrate --network rinkeby
it does do the migration, but the process never actually stops and goes back to bash. Instead, after the final Saving artifacts...
message it just hangs.
Not sure if that's a problem with our migration steps or what.
It's annoying, and means we can't automate this process with a script.
The hacky way to fix it would be, I guess, to make a migration script named 999_exit.js
which just does a process.exit()
. Feels dirty, but better than nothing?