fix: show unknown insteaf of empty for missing version
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-01-01 17:23:21 +01:00
parent 8992050409
commit 7a0d18ceb6
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ func GetDeployedServicesByName(ctx context.Context, cl *dockerclient.Client, sta
// IsDeployed chekcks whether an appp is deployed or not.
func IsDeployed(ctx context.Context, cl *dockerclient.Client, stackName string) (bool, string, error) {
version := ""
version := "unknown"
isDeployed := false
filter := filters.NewArgs()