5 lines
185 B
Bash
Executable file
5 lines
185 B
Bash
Executable file
#!/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;
|