Mute unnecessary console output
This commit is contained in:
parent
f86d71f6f5
commit
187e58801a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue