16 lines
280 B
Bash
16 lines
280 B
Bash
#!/bin/bash
|
|
# Elevate script
|
|
if [ ! "$UID" -eq 0 ]
|
|
then
|
|
exec sudo bash "$0"
|
|
fi
|
|
|
|
workingDirectory=$(pwd)
|
|
contextRoot=$(mktemp)
|
|
cd $contextRoot
|
|
|
|
wget https://dl.gitea.io/tea/0.9.0/tea-0.9.0-linux-amd64 -O tea
|
|
install tea /usr/local/bin
|
|
|
|
cd $workingDirectory
|
|
rm -rf $contextRoot
|