exit embark deploy after contracts are deployed

This commit is contained in:
Iuri Matias 2015-10-13 12:00:03 -04:00
parent c176c55178
commit 283b26f4b3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ program.command('deploy [env]').description('deploy contracts').action(function(
run("grunt deploy_contracts:" + env);
}
else {
deploy(env, embarkConfig, function() {});
deploy(env, embarkConfig, function() { exit(); });
}
});