From af712f4a479e0e457d9656769eae5aa111fe886c Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Thu, 11 Jun 2020 13:24:53 +0000 Subject: [PATCH] --ssh-key should be string not bool Fix #134 --- cmd/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/login.go b/cmd/login.go index 6f827fb..0d34a98 100644 --- a/cmd/login.go +++ b/cmd/login.go @@ -55,7 +55,7 @@ var cmdLoginAdd = cli.Command{ Usage: "Access token. Can be obtained from Settings > Applications", Required: true, }, - &cli.BoolFlag{ + &cli.StringFlag{ Name: "ssh-key", Aliases: []string{"s"}, Usage: "Path to a SSH key to use for pull/push operations", -- 2.40.1