mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
Customer feedback indicated projects was a confusing name.
After querying the team internally, it seemed unanimous
that it is indeed a confusing name.
Here's for a lil less confusion @ashmeer7 🥂
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/coder/coder/codersdk"
|
|
)
|
|
|
|
func workspaceUpdate() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "update",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client, err := createClient(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
workspace, err := client.WorkspaceByName(cmd.Context(), codersdk.Me, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !workspace.Outdated {
|
|
_, _ = fmt.Printf("Workspace isn't outdated!\n")
|
|
return nil
|
|
}
|
|
template, err := client.Template(cmd.Context(), workspace.TemplateID)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
before := time.Now()
|
|
build, err := client.CreateWorkspaceBuild(cmd.Context(), workspace.ID, codersdk.CreateWorkspaceBuildRequest{
|
|
TemplateVersionID: template.ActiveVersionID,
|
|
Transition: workspace.LatestBuild.Transition,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
logs, err := client.WorkspaceBuildLogsAfter(cmd.Context(), build.ID, before)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for {
|
|
log, ok := <-logs
|
|
if !ok {
|
|
break
|
|
}
|
|
_, _ = fmt.Printf("Output: %s\n", log.Output)
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
}
|