Skip to content

Commit

Permalink
Fix usage of tunnel:close in book:checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jan 29, 2022
1 parent 4508d8c commit 45ec4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (b *Book) Checkout(step string) error {
executeCommand([]string{"symfony", "server:stop"}, b.Debug, true, nil)

printBanner("<comment>[WEB]</> Stopping the Platform.sh tunnel", b.Debug)
if err := executeCommand([]string{"symfony", "tunnel:stop"}, b.Debug, true, nil); err != nil {
if err := executeCommand([]string{"symfony", "tunnel:close", "-y"}, b.Debug, true, nil); err != nil {
return err
}

Expand Down

0 comments on commit 45ec4e9

Please sign in to comment.