From 8822cee673b17b7a6793d711d9ac2d9deb18ba9a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 15 Jul 2024 20:19:52 +0200 Subject: [PATCH] Fix syntax error --- archiso/scripts/show-diff.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archiso/scripts/show-diff.fish b/archiso/scripts/show-diff.fish index 0a66f24d..080bff6e 100755 --- a/archiso/scripts/show-diff.fish +++ b/archiso/scripts/show-diff.fish @@ -18,7 +18,7 @@ begin git -C "$projectDir" ls-files --exclude-standard --others end | \ rsync --files-from=/dev/stdin --exclude={.gitignore,README.md,scripts,LICENSE,valhalla.patch} "$dir/.." "$contextRoot" - end 2>&1 > /dev/null; + end &> /dev/null; and git -C "$contextRoot" diff end