Mute unnecessary console output

This commit is contained in:
Manuel Thalmann 2023-08-07 17:52:32 +02:00
parent 3dc7da0351
commit b5c1d31417

View file

@ -3,9 +3,9 @@
sudo pacman --noconfirm -Syu cabextract;
contextRoot="$(mktemp -d)";
pushd "$contextRoot";
pushd "$contextRoot" > /dev/null;
git clone "https://github.com/dlundqvist/xone.git" "$contextRoot";
sudo "$contextRoot/install.sh" --release;
yes "" | sudo xone-get-firmware.sh;
popd;
rm -rf "$contextRoot";
rm -rf "$contextRoot" > /dev/null;