Skip to content

Commit

Permalink
Remove phpunit installation step in book:checkout (not needed anymore)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jan 29, 2022
1 parent 45ec4e9 commit fff9052
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions book/checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,6 @@ func (b *Book) Checkout(step string) error {
return err
}

printBanner("<comment>[WEB]</> Installing PHPUnit (might take some time)", b.Debug)
if _, err := os.Stat(filepath.Join(b.Dir, "bin", "phpunit")); err == nil {
if err := executeCommand([]string{"symfony", "php", filepath.Join("bin", "phpunit"), "install"}, b.Debug, false, nil); err != nil {
return err
}
} else {
terminal.Println("Skipped for this step")
}

printBanner("<comment>[WEB]</> Adding .env.local", b.Debug)
if emptyFile, err = os.Create(filepath.Join(b.Dir, ".env.local")); err != nil {
return err
Expand Down

0 comments on commit fff9052

Please sign in to comment.