summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2025-07-05 23:17:33 +0100
committerMatthew Fennell <matthew@fennell.dev>2025-07-05 23:17:33 +0100
commitb20571406b685e5faf44b5d088db0376bc8ca0d5 (patch)
treed36467a465114eff1e2cc0120684edec3fbc8be3
parent90cbbf486d952c657beabf3028b207364d125561 (diff)
Use --diff flag in Makefile
This makes it easier to debug why a step is unexpectedly not idempotent.
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 21f2c63..8cdfaca 100644
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,12 @@ check:
make staging
staging:
- ansible-playbook --forks 1 --inventory inventory/staging.ini playbook.yaml
+ ansible-playbook --forks 1 --inventory inventory/staging.ini playbook.yaml \
+ --diff
prod:
- ansible-playbook --forks 1 --inventory inventory/prod.ini playbook.yaml
+ ansible-playbook --forks 1 --inventory inventory/prod.ini playbook.yaml \
+ --diff
lint:
precious --ascii lint --all