mirror of
https://github.com/aljazceru/omakub.git
synced 2026-01-14 09:54:19 +01:00
7 lines
333 B
Bash
7 lines
333 B
Bash
cd /tmp
|
|
LOCALSEND_VERSION=$(curl -s "https://api.github.com/repos/localsend/localsend/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
|
|
wget -O localsend.deb "https://github.com/localsend/localsend/releases/latest/download/LocalSend-${LOCALSEND_VERSION}-linux-x86-64.deb"
|
|
sudo apt install -y ./localsend.deb
|
|
rm localsend.deb
|
|
cd -
|