Skip to content

Commit

Permalink
Removes risky newlines from long desc
Browse files Browse the repository at this point in the history
  • Loading branch information
AllysonRosenthal authored Feb 3, 2024
1 parent 085d2c3 commit 31ae3aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ var StartProjectCmd = &cobra.Command{
Aliases: []string{"start"},
Args: cobra.ExactArgs(0),
Short: "starts a development session for the current project",
Long: "connects your local environment and the project environment on your Pod.\nChanges propagate to the project environment in real time.",
Long: "connects your local environment and the project environment on your Pod. Changes propagate to the project environment in real time.",
Run: func(cmd *cobra.Command, args []string) {
config := loadProjectConfig()
projectId := config.GetPath([]string{"project", "uuid"}).(string)
Expand Down Expand Up @@ -252,7 +252,7 @@ var BuildProjectCmd = &cobra.Command{
Use: "build",
Args: cobra.ExactArgs(0),
Short: "builds Dockerfile for current project",
Long: "builds a local Dockerfile for the project in the current folder.\nYou can use this Dockerfile to build an image and deploy it to any API server.",
Long: "builds a local Dockerfile for the project in the current folder. You can use this Dockerfile to build an image and deploy it to any API server.",
Run: func(cmd *cobra.Command, args []string) {
buildProjectDockerfile()
// config := loadProjectConfig()
Expand Down

0 comments on commit 31ae3aa

Please sign in to comment.