From 00249bbd2330088dc584015353837917bd557503 Mon Sep 17 00:00:00 2001 From: Guangyang Li <2060045+gyli@users.noreply.github.com> Date: Mon, 11 Jul 2022 01:28:50 -0400 Subject: [PATCH] Use DefaultText in up.go (#587) Signed-off-by: Guangyang Li --- pkg/app/up.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/app/up.go b/pkg/app/up.go index 463bebbd6..9d5ff4e3f 100644 --- a/pkg/app/up.go +++ b/pkg/app/up.go @@ -45,9 +45,10 @@ var CommandUp = &cli.Command{ Usage: "Build and run the envd environment", Flags: []cli.Flag{ &cli.StringFlag{ - Name: "tag", - Usage: "Name and optionally a tag in the 'name:tag' format (default: PROJECT:dev)", - Aliases: []string{"t"}, + Name: "tag", + Usage: "Name and optionally a tag in the 'name:tag' format", + Aliases: []string{"t"}, + DefaultText: "PROJECT:dev", }, &cli.PathFlag{ Name: "path",