Merge pull request #899 from mobilegmYT/patch-24

Change tldr to official source
pull/904/head
Botspot 4 years ago committed by GitHub
commit e72bfe4532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,9 +7,7 @@ function error {
exit 1
}
cd ~/Downloads
wget https://cdn.discordapp.com/attachments/741857430195142668/774969741981777930/tldr
sudo mv tldr /usr/bin/
wget -O tldr https://github.com/dbrgn/tealdeer/releases/download/v1.4.1/tldr-linux-arm-musleabihf || error "Failed to download tldr!"
sudo mv tldr /usr/bin/ || error "Failed to move binary to /usr/bin/"
sudo chmod +x /usr/bin/tldr
tldr --update

@ -0,0 +1,13 @@
#!/bin/bash
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
function error {
echo -e "\\e[91m$1\\e[39m"
exit 1
}
wget -O tldr https://github.com/dbrgn/tealdeer/releases/download/v1.4.1/tldr-linux-armv7-musleabihf || error "Failed to download tldr!"
sudo mv tldr /usr/bin/ || error "Failed to move binary to /usr/bin/"
sudo chmod +x /usr/bin/tldr
tldr --update
Loading…
Cancel
Save