PortValhalla/archiso/scripts/show-diff.sh

11 lines
348 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-18 20:19:12 +00:00
diff -ru --no-dereference -x{.git,.gitignore,README.md,scripts,LICENSE,out,valhalla.patch} "$(templatePath)" .. \
| tee "valhalla.patch";
popd > /dev/null;