From 192e0adc005d461bc0aeb1a53fad4810aee69d8a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 19 Jun 2024 13:45:06 +0200 Subject: [PATCH] Fix `xone` detection --- scripts/Arch/Software/xone/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Arch/Software/xone/install.sh b/scripts/Arch/Software/xone/install.sh index 45bb8947..40bda7d0 100755 --- a/scripts/Arch/Software/xone/install.sh +++ b/scripts/Arch/Software/xone/install.sh @@ -6,7 +6,7 @@ contextRoot="$(mktemp -d)"; repo="https://github.com/manuth/xone.git"; pushd "$contextRoot" > /dev/null; -if ! dkms status --all 2>&1 | grep xone > /dev/null; +if ! dkms status --all | grep xone > /dev/null; then git clone "$repo" "$contextRoot"; sudo ./install.sh --release;