Skip to content

Commit 45ec4e9

Browse files
committed
Fix usage of tunnel:close in book:checkout
1 parent 4508d8c commit 45ec4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func (b *Book) Checkout(step string) error {
114114
executeCommand([]string{"symfony", "server:stop"}, b.Debug, true, nil)
115115

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

0 commit comments

Comments
 (0)