Delete temporary directory after use

This commit is contained in:
Manuel Thalmann 2023-08-07 17:17:57 +02:00
parent 4dc661f352
commit 995c8ba61a

View file

@ -3,3 +3,4 @@ contextRoot="$(mktemp -d)";
git clone "https://github.com/dlundqvist/xone.git" "$contextRoot";
sudo "$contextRoot/install.sh" --release;
yes "" | sudo xone-get-firmware.sh;
rm -rf "$contextRoot";