diff --git a/scripts/Arch/Software/xone/install.sh b/scripts/Arch/Software/xone/install.sh index 0039d7f62..b09fce7c5 100755 --- a/scripts/Arch/Software/xone/install.sh +++ b/scripts/Arch/Software/xone/install.sh @@ -1,6 +1,8 @@ #!/bin/bash contextRoot="$(mktemp -d)"; +pushd "$contextRoot"; git clone "https://github.com/dlundqvist/xone.git" "$contextRoot"; sudo "$contextRoot/install.sh" --release; yes "" | sudo xone-get-firmware.sh; +popd "$contextRoot"; rm -rf "$contextRoot";