Skip to content

Commit

Permalink
Fix command visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jan 29, 2022
1 parent fff9052 commit 476fa67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/book_check_reqs.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/symfony-cli/terminal"
)

var BookCheckReqsCmd = &console.Command{
var bookCheckReqsCmd = &console.Command{
Category: "book",
Name: "check-requirements",
Usage: `Check that you have all the pre-requisites locally to code while reading the "Symfony: The Fast Track" book`,
Expand Down
2 changes: 1 addition & 1 deletion commands/book_checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/symfony-cli/terminal"
)

var BookCheckoutCmd = &console.Command{
var bookCheckoutCmd = &console.Command{
Category: "book",
Name: "checkout",
Usage: `Check out a step of the "Symfony: The Fast Track" book repository`,
Expand Down
4 changes: 2 additions & 2 deletions commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ func CommonCommands() []*console.Command {
binConsoleWrapper,
composerWrapper,
phpWrapper,
BookCheckReqsCmd,
BookCheckoutCmd,
bookCheckReqsCmd,
bookCheckoutCmd,
localNewCmd,
localPhpListCmd,
localPhpRefreshCmd,
Expand Down

0 comments on commit 476fa67

Please sign in to comment.