From 50add797ddcdc2df360017ba1cf59cc9676bd1dd Mon Sep 17 00:00:00 2001 From: kake26 Date: Thu, 6 Mar 2025 18:52:14 -0600 Subject: [PATCH] bug #1 fix --- mastersetup.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/mastersetup.bash b/mastersetup.bash index 5964bc3..6681208 100644 --- a/mastersetup.bash +++ b/mastersetup.bash @@ -39,6 +39,7 @@ install_from_url() { # I agree this will work fine local install_cmd=$2 local temp_file=$(mktemp) curl -fsSL "$url" -o "$temp_file" + chmod 755 "$temp_file" eval "$install_cmd $temp_file" rm "$temp_file" }