Skip to content

Commit 6d99431

Browse files
committed
Fixed ahoy reset to remove .logs dir.
1 parent fbf7f1b commit 6d99431

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ahoy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ commands:
8989
usage: Reset project to the default state.
9090
cmd: |
9191
killall -9 php >/dev/null 2>&1 || true
92-
chmod -Rf 777 build > /dev/null
93-
rm -Rf build > /dev/null || true
94-
rm -Rf .logs > /dev/null || true
92+
chmod -Rf 777 build .logs > /dev/null 2>&1 || true
93+
rm -Rf build > /dev/null 2>&1 || true
94+
rm -Rf .logs > /dev/null 2>&1 || true
9595
9696
# Override entrypoint to alter default behaviour of Ahoy.
9797
entrypoint:

0 commit comments

Comments
 (0)