We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6548653 commit 6abc70bCopy full SHA for 6abc70b
examples/events/README.md
@@ -49,7 +49,7 @@ lando what-service --service web2 | grep web | wc -l | grep 2
49
lando multi-pass
50
51
# Should run on rebuild without failing and trigger pre-rebuild event
52
-lando rebuild -y | grep "ET TU, BRUT"
+lando rebuild -y -vvv | grep "ET TU, BRUT"
53
lando ssh -s web -c "cat /app/test/web-pre-rebuild.txt | grep rebuilding"
54
lando ssh -s l337 -c "cat /app/test/l337-pre-rebuild.txt | grep rebuilding"
55
lando exec web2 -- cat /app/test/web2-pre-rebuild.txt | grep rebuilding
scripts/check-entrypoint-ran.sh
@@ -7,6 +7,7 @@ retry=16
7
8
until [ "$attempt" -ge "$retry" ]
9
do
10
+ ls -la /tmp
11
test -f "/tmp/lando-entrypoint-ran" && break
12
attempt=$((attempt+1))
13
sleep "$delay"
0 commit comments