fixed relative path issue with javascript files
This commit is contained in:
parent
55424a11af
commit
2b3957f373
@ -333,7 +333,7 @@ func attach(ctx *cli.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
repl := newLightweightJSRE(
|
repl := newLightweightJSRE(
|
||||||
ctx.String(utils.JSpathFlag.Name),
|
ctx.GlobalString(utils.JSpathFlag.Name),
|
||||||
client,
|
client,
|
||||||
true,
|
true,
|
||||||
nil)
|
nil)
|
||||||
@ -366,7 +366,7 @@ func console(ctx *cli.Context) {
|
|||||||
startEth(ctx, ethereum)
|
startEth(ctx, ethereum)
|
||||||
repl := newJSRE(
|
repl := newJSRE(
|
||||||
ethereum,
|
ethereum,
|
||||||
ctx.String(utils.JSpathFlag.Name),
|
ctx.GlobalString(utils.JSpathFlag.Name),
|
||||||
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
|
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
|
||||||
client,
|
client,
|
||||||
true,
|
true,
|
||||||
@ -395,7 +395,7 @@ func execJSFiles(ctx *cli.Context) {
|
|||||||
startEth(ctx, ethereum)
|
startEth(ctx, ethereum)
|
||||||
repl := newJSRE(
|
repl := newJSRE(
|
||||||
ethereum,
|
ethereum,
|
||||||
ctx.String(utils.JSpathFlag.Name),
|
ctx.GlobalString(utils.JSpathFlag.Name),
|
||||||
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
|
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
|
||||||
client,
|
client,
|
||||||
false,
|
false,
|
||||||
|
Loading…
Reference in New Issue
Block a user