From d5837e84ff963f3bde1a64570eedb959b7ec434b Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Fri, 28 Sep 2018 14:38:05 +0200 Subject: cmd/swarm: trim new lines from files --- cmd/swarm/access.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd') diff --git a/cmd/swarm/access.go b/cmd/swarm/access.go index 67e852dde..dd2d513c2 100644 --- a/cmd/swarm/access.go +++ b/cmd/swarm/access.go @@ -130,7 +130,7 @@ func accessNewACT(ctx *cli.Context) { if err != nil { utils.Fatalf("had an error reading the grantee public key list") } - pkGrantees = strings.Split(string(bytes), "\n") + pkGrantees = strings.Split(strings.Trim(string(bytes), "\n"), "\n") } if passGranteesFilename != "" { @@ -138,7 +138,7 @@ func accessNewACT(ctx *cli.Context) { if err != nil { utils.Fatalf("could not read password filename: %v", err) } - passGrantees = strings.Split(string(bytes), "\n") + passGrantees = strings.Split(strings.Trim(string(bytes), "\n"), "\n") } accessKey, ae, actManifest, err = api.DoACT(ctx, privateKey, salt, pkGrantees, passGrantees) if err != nil { -- cgit v1.2.3