PortValhalla/archiso/scripts/show-diff.sh

7 lines
329 B
Bash
Raw Normal View History

#!/bin/bash
# Shows the differences between Arch's original `archiso` template named `releng` and this `archiso` directory.
pushd "${BASH_SOURCE%/*}" > /dev/null;
. ./template-path.sh;
2024-06-20 14:07:18 +00:00
diff -ru --color --no-dereference -x{.git,.gitignore,README.md,scripts,LICENSE,out,valhalla.patch,work} "$(templatePath)" ..;
popd > /dev/null;