8000 Remove the version for the Symfony book · symfony-cli/symfony-cli@1d80a80 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d80a80

Browse files
committed
Remove the version for the Symfony book
1 parent 1f9d955 commit 1d80a80

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

commands/book_check_reqs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
var BookCheckReqsCmd = &console.Command{
2929
Category: "book",
3030
Name: "check-requirements",
31-
Usage: `Check that you have all the pre-requisites locally to code while reading the "Symfony 5: The Fast Track" book`,
31+
Usage: `Check that you have all the pre-requisites locally to code while reading the "Symfony: The Fast Track" book`,
3232
Aliases: []*console.Alias{{Name: "book:check"}},
3333
Action: func(c *console.Context) error {
3434
ui := terminal.SymfonyStyle(terminal.Stdout, terminal.Stdin)

commands/book_checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
var BookCheckoutCmd = &console.Command{
2929
Category: "book",
3030
Name: "checkout",
31-
Usage: `Check out a step of the "Symfony 5: The Fast Track" book repository`,
31+
Usage: `Check out a step of the "Symfony: The Fast Track" book repository`,
3232
Flags: []console.Flag{
3333
dirFlag,
3434
&console.BoolFlag{Name: "debug", Usage: "Display commands output"},

commands/local_new.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ var localNewCmd = &console.Command{
6464
&console.BoolFlag{Name: "full", Usage: "Use github.com/symfony/website-skeleton (deprecated, use --webapp instead)"},
6565
&console.BoolFlag{Name: "demo", Usage: "Use github.com/symfony/demo"},
6666
&console.BoolFlag{Name: "webapp", Usage: "Add the webapp pack to get a fully configured web project"},
67-
&console.BoolFlag{Name: "book", Usage: "Clone the Symfony 5: The Fast Track book project"},
67+
&console.BoolFlag{Name: "book", Usage: "Clone the Symfony: The Fast Track book project"},
6868
&console.BoolFlag{Name: "no-git", Usage: "Do not initialize Git"},
6969
&console.BoolFlag{Name: "cloud", Usage: "Initialize Platform.sh"},
7070
&console.StringSliceFlag{Name: "service", Usage: "Configure some services", Hidden: true},
@@ -124,7 +124,7 @@ var localNewCmd = &console.Command{
124124
return console.Exit("The --version flag is not supported for the Symfony Demo", 1)
125125
}
126126
if symfonyVersion == "" && c.Bool("book") {
127-
return console.Exit("The --version flag is required for the Symfony 5 book", 1)
127+
return console.Exit("The --version flag is required for the Symfony book", 1)
128128
}
129129
if c.Bool("webapp") && c.Bool("no-git") {
130130
return console.Exit("The --webapp flag cannot be used with --no-git", 1)

0 commit comments

Comments
 (0)
0