Some checks failed
bluebuild / Build Custom Image (recipe.yml) (pull_request) Failing after 33s
14 lines
251 B
Bash
14 lines
251 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
# move to tmp folder and clone repo
|
|
cd /tmp
|
|
git clone https://github.com/atar-axis/xpadneo.git
|
|
|
|
# move into repo folder and install
|
|
cd xpadneo
|
|
./install.sh
|
|
|