This commit is contained in:
kake26 2025-03-06 18:52:14 -06:00
parent 3b554bee52
commit 50add797dd
Signed by: kake26
GPG key ID: E8AFC43591876B4D

View file

@ -39,6 +39,7 @@ install_from_url() { # I agree this will work fine
local install_cmd=$2 local install_cmd=$2
local temp_file=$(mktemp) local temp_file=$(mktemp)
curl -fsSL "$url" -o "$temp_file" curl -fsSL "$url" -o "$temp_file"
chmod 755 "$temp_file"
eval "$install_cmd $temp_file" eval "$install_cmd $temp_file"
rm "$temp_file" rm "$temp_file"
} }