PortValhalla/scripts/Software/tea/install.sh

17 lines
338 B
Bash
Raw Normal View History

2022-11-12 12:18:28 +00:00
#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE";
2022-11-13 00:11:32 +00:00
else
2023-01-23 15:11:51 +00:00
workingDirectory="$(pwd)";
contextRoot="$(mktemp -d)";
cd "$contextRoot";
2022-11-12 12:18:28 +00:00
wget https://dl.gitea.io/tea/0.9.0/tea-0.9.0-linux-amd64 -O tea;
install tea /usr/local/bin;
2022-11-12 12:18:28 +00:00
2023-01-23 15:11:51 +00:00
cd "$workingDirectory";
rm -rf "$contextRoot";
2022-11-13 00:11:32 +00:00
fi