From 50d663ff6e244c8b86530e9f7443ee3df4309cbe Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 10 Sep 2021 10:35:53 +0200 Subject: [PATCH] fix: use correct var for storing server var See https://git.coopcloud.tech/coop-cloud/organising/issues/162. --- cli/app/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/new.go b/cli/app/new.go index 737fc1f8..d8b43db8 100644 --- a/cli/app/new.go +++ b/cli/app/new.go @@ -32,7 +32,7 @@ var newAppServerFlag = &cli.StringFlag{ Aliases: []string{"s"}, Value: "", Usage: "Show apps of a specific server", - Destination: &listAppServer, + Destination: &newAppServer, } var newAppName string