From 70d8cb6aaf3b3a50e858a3cfb5dc8ca52505bcac Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 20 Jun 2024 16:07:18 +0200 Subject: [PATCH] Fix colored output of the diff script --- archiso/scripts/show-diff.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/archiso/scripts/show-diff.sh b/archiso/scripts/show-diff.sh index 6c0626b5a..be3acc8a9 100755 --- a/archiso/scripts/show-diff.sh +++ b/archiso/scripts/show-diff.sh @@ -1,10 +1,6 @@ #!/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,work} "$(templatePath)" .. \ - | tee "valhalla.patch"; - +diff -ru --color --no-dereference -x{.git,.gitignore,README.md,scripts,LICENSE,out,valhalla.patch,work} "$(templatePath)" ..; popd > /dev/null;