diff --git a/package.json b/package.json index 80ed9280..ceee4de1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "venona", - "version": "1.2.9", + "version": "1.2.10", "description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline", "main": "index.js", "scripts": { diff --git a/venonactl/VERSION b/venonactl/VERSION index 9d4f8239..963ed7cf 100644 --- a/venonactl/VERSION +++ b/venonactl/VERSION @@ -1 +1 @@ -1.2.9 +1.2.10 diff --git a/venonactl/cmd/cmdutils.go b/venonactl/cmd/cmdutils.go index 48d9ccbc..7aaacf97 100644 --- a/venonactl/cmd/cmdutils.go +++ b/venonactl/cmd/cmdutils.go @@ -241,7 +241,7 @@ func extendStoreWithAgentAPI(logger logger.Logger, token string, agentID string) func (ns nodeSelector) String() string { var s string for k, v := range ns { - s = fmt.Sprintf("%s: %q", k, v) + s = fmt.Sprintf("%s: %s", k, v) } return s }