diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -5,7 +5,7 @@ # (https://git.cjennings.net/dotfiles.git). Run them from there: # cd ~/.dotfiles && make stow|restow|reset|unstow|import <de> -.PHONY: help deps test-unit test test-keep test-vm-base +.PHONY: help deps test-unit test test-keep test-vm-base package-diff # Default target - show help help: @@ -17,6 +17,7 @@ help: @echo " test Run full VM test suite (creates base VM if needed)" @echo " test-keep Run test and keep VM running for manual testing" @echo " test-vm-base Create base VM only (runs archangel)" + @echo " package-diff Compare archsetup's declared packages vs this system" @echo "" @echo "Dotfile stow operations now live in the dotfiles repo:" @echo " cd ~/.dotfiles && make stow|restow|reset|unstow|import <de>" @@ -64,3 +65,8 @@ test-keep: bash scripts/testing/create-base-vm.sh; \ fi @bash scripts/testing/run-test.sh --keep + +# Compare the packages archsetup declares against what's installed here. +# Shows declared-but-missing and installed-but-undeclared (AUR vs official). +package-diff: + @bash scripts/package-inventory |
