cmd/up: deprecate dagger up with a warning

Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
This commit is contained in:
Sam Alba 2022-03-08 17:10:31 -08:00
parent 0af9e1a9c5
commit 03adcad911

View File

@ -18,6 +18,10 @@ import (
)
var upCmd = &cobra.Command{
// FIXME: this command will be removed soon
Hidden: true,
Deprecated: "please use `dagger do ACTION` instead",
Use: "up",
Short: "Bring an environment online with latest plan and inputs",
Args: cobra.MaximumNArgs(1),