6 lines
185 B
Bash
6 lines
185 B
Bash
|
#!/bin/bash
|
||
|
contextRoot="$(mktemp -d)";
|
||
|
git clone "https://github.com/dlundqvist/xone.git" "$contextRoot";
|
||
|
sudo "$contextRoot/install.sh" --release;
|
||
|
yes "" | sudo xone-get-firmware.sh;
|