cmd/ethereum: allow multiple js files

This commit is contained in:
Felix Lange 2015-03-10 00:24:11 +01:00
parent 487f68ec48
commit d1e04f7388
1 changed files with 5 additions and 5 deletions

View File

@ -159,13 +159,13 @@ func runjs(ctx *cli.Context) {
startEth(ctx, eth)
if len(ctx.Args()) == 0 {
runREPL(eth)
eth.Stop()
eth.WaitForShutdown()
} else if len(ctx.Args()) == 1 {
execJsFile(eth, ctx.Args()[0])
} else {
utils.Fatalf("This command can handle at most one argument.")
for _, file := range ctx.Args() {
execJsFile(eth, file)
}
}
eth.Stop()
eth.WaitForShutdown()
}
func startEth(ctx *cli.Context, eth *eth.Ethereum) {