@@ -30,7 +30,7 @@ EXAMPLES
3030COMMANDS
3131 test: Run tests without committing changes
3232 submit: Commit changes & submit to move to next step
33- docs : View current stage instructions
33+ task : View current stage instructions
3434 update-buildpack: Update language version
3535 help: Show usage instructions
3636
@@ -86,13 +86,13 @@ func run() error {
8686 return commands .TestCommand (ctx , * shouldTestPrevious )
8787 case "submit" :
8888 return commands .SubmitCommand (ctx )
89- case "docs " :
90- docsCmd := flag .NewFlagSet ("docs " , flag .ExitOnError )
91- stageSlug := docsCmd .String ("stage" , "" , "view instructions for a specific stage (slug, +N, or -N)" )
92- raw := docsCmd .Bool ("raw" , false , "print instructions without pretty-printing" )
93- docsCmd .Parse (flag .Args ()[1 :])
89+ case "task " :
90+ taskCmd := flag .NewFlagSet ("task " , flag .ExitOnError )
91+ stageSlug := taskCmd .String ("stage" , "" , "view instructions for a specific stage (slug, +N, or -N)" )
92+ raw := taskCmd .Bool ("raw" , false , "print instructions without pretty-printing" )
93+ taskCmd .Parse (flag .Args ()[1 :])
9494
95- return commands .DocsCommand (ctx , * stageSlug , * raw )
95+ return commands .TaskCommand (ctx , * stageSlug , * raw )
9696 case "update-buildpack" :
9797 return commands .UpdateBuildpackCommand (ctx )
9898 case "help" ,
0 commit comments