mirror of
https://github.com/wahyd4/skaware.git
synced 2026-08-09 04:35:57 +10:00
8 lines
261 B
Bash
8 lines
261 B
Bash
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
# download and untar github-release
|
|
wget -nv -O github-release.amd64.tar.bz2 https://github.com/aktau/github-release/releases/download/v0.6.2/linux-amd64-github-release.tar.bz2
|
|
tar xf github-release.amd64.tar.bz2 --strip-components=3
|