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

View File

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