Browse Source

fixed relative path issue with javascript files

Bas van Kervel 10 years ago
parent
commit
2b3957f373
1 changed files with 3 additions and 3 deletions
  1. 3 3
      cmd/geth/main.go

+ 3 - 3
cmd/geth/main.go

@@ -333,7 +333,7 @@ func attach(ctx *cli.Context) {
 	}
 
 	repl := newLightweightJSRE(
-		ctx.String(utils.JSpathFlag.Name),
+		ctx.GlobalString(utils.JSpathFlag.Name),
 		client,
 		true,
 		nil)
@@ -366,7 +366,7 @@ func console(ctx *cli.Context) {
 	startEth(ctx, ethereum)
 	repl := newJSRE(
 		ethereum,
-		ctx.String(utils.JSpathFlag.Name),
+		ctx.GlobalString(utils.JSpathFlag.Name),
 		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
 		client,
 		true,
@@ -395,7 +395,7 @@ func execJSFiles(ctx *cli.Context) {
 	startEth(ctx, ethereum)
 	repl := newJSRE(
 		ethereum,
-		ctx.String(utils.JSpathFlag.Name),
+		ctx.GlobalString(utils.JSpathFlag.Name),
 		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
 		client,
 		false,