Skip to content

Commit 27cd2c2

Browse files
authored
Add render cmd to CLI (#73)
1 parent e6d8490 commit 27cd2c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ func main() {
1919

2020
rootCmd := cmd.RootCmd()
2121
rootCmd.AddCommand(cmd.BuildCmd(appFs))
22+
rootCmd.AddCommand(cmd.CleanupCmd(appFs))
2223
rootCmd.AddCommand(cmd.FindPRCommand(appFs))
2324
rootCmd.AddCommand(cmd.NewCmd())
2425
rootCmd.AddCommand(cmd.PrHasFragmentCommand(appFs))
26+
rootCmd.AddCommand(cmd.RenderCmd(appFs))
2527
rootCmd.AddCommand(cmd.VersionCmd())
26-
rootCmd.AddCommand(cmd.CleanupCmd(appFs))
2728

2829
err := rootCmd.Execute()
2930
if err != nil {

0 commit comments

Comments
 (0)