diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 23:17:33 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 23:17:33 +0100 |
commit | b20571406b685e5faf44b5d088db0376bc8ca0d5 (patch) | |
tree | d36467a465114eff1e2cc0120684edec3fbc8be3 | |
parent | 90cbbf486d952c657beabf3028b207364d125561 (diff) |
Use --diff flag in Makefile
This makes it easier to debug why a step is unexpectedly not idempotent.
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |