Fix autoinstall releases url

This commit is contained in:
Tobias Reisinger 2025-08-24 21:12:13 +02:00
parent b23d042369
commit e31c7026b5
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE

View file

@ -7,7 +7,7 @@ if [ ! -x "$(command -v autoinstall)" ];
then
echo "Installing autoinstall command"
mkdir -p "$HOME/.local/bin"
curl -Lo "$HOME/.local/bin/autoinstall" https://git.serguzim.me/serguzim/tools/releases/download/latest/autoinstall
curl -Lo "$HOME/.local/bin/autoinstall" https://git.serguzim.me/serguzim/autoinstall/releases/download/latest/autoinstall
chmod +x "$HOME/.local/bin/autoinstall"
fi