10 lines
348 B
Bash
Executable file
10 lines
348 B
Bash
Executable file
#!/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;
|
|
|
|
diff -ru --no-dereference -x{.git,.gitignore,README.md,scripts,LICENSE,out,valhalla.patch} .. "$(templatePath)" \
|
|
| tee "valhalla.patch";
|
|
|
|
popd > /dev/null;
|