Skip to content

Commit

Permalink
Updated the install message for a local install (#105)
Browse files Browse the repository at this point in the history
* Updated the install message for a local install

* nit

* updated version info for local install
  • Loading branch information
ruokun-niu authored Nov 11, 2024
1 parent 27f218e commit 769e66a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cli/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,12 @@ Usage examples:
return err
}

fmt.Printf("Installing Drasi with version %s from registry %s\n", version, registry)
if local {
fmt.Printf("Installing Drasi version %s with local images\n", version)
} else {
fmt.Printf("Installing Drasi with version %s from registry %s\n", version, registry)
}

output := output.NewTaskOutput()
defer output.Close()

Expand Down

0 comments on commit 769e66a

Please sign in to comment.