sitoctt/Scripts/Get.staticosoDevFixed.sh

13 lines
246 B
Bash
Raw Normal View History

2023-02-23 08:53:00 +01:00
#!/bin/sh
2023-03-20 23:42:22 +01:00
GetArchive() {
# $1: Branch name or commit hash
wget \
-O ./staticoso.tar.bz2 \
https://gitlab.com/octtspacc/staticoso/-/archive/$1/staticoso-$1.tar.bz2
2023-03-23 23:43:53 +01:00
tar xf ./staticoso.tar.bz2
2023-03-20 23:42:22 +01:00
mv ./staticoso-$1 ./staticoso
}
2023-02-23 08:53:00 +01:00
2023-03-20 23:42:22 +01:00
GetArchive Dev