Skip to content

Commit ed88462

Browse files
committed
fix(ci): drop invalid -y flag from snapshot delete (CLI has no -y; delete is non-interactive)
The old 'snapshot delete cheatcode-sandbox -y' failed on the unknown -y flag (swallowed by 2>/dev/null || true), so the follow-up create hit 'already exists'. delete without -y is non-interactive.
1 parent 56a788b commit ed88462

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
# Idempotent: drop the previous snapshot of this name (existing sandboxes
4343
# are unaffected — they already hold their own copy) then rebuild.
44-
daytona snapshot delete cheatcode-sandbox -y 2>/dev/null || true
44+
daytona snapshot delete cheatcode-sandbox 2>/dev/null || true
4545
daytona snapshot create cheatcode-sandbox \
4646
-f infra/containers/sandbox/Dockerfile \
4747
-c infra/containers/sandbox \

0 commit comments

Comments
 (0)