From fb1a1f8d790841836994ec5c189d05b1299784d6 Mon Sep 17 00:00:00 2001 From: Timothy Allen Date: Wed, 1 Mar 2023 15:46:06 -0500 Subject: [PATCH] The command needs to be globally readable. --- install-sudo.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-sudo.sh b/install-sudo.sh index 1b11cc8..9a70aef 100644 --- a/install-sudo.sh +++ b/install-sudo.sh @@ -7,6 +7,7 @@ if grep -q "# Start Pyromania" /etc/bashrc; then echo "source /etc/bashrc" else sudo curl -sS -o /etc/bashrc-pyro.sh https://raw.githubusercontent.com/FlipperPA/pyromania/main/pyro.sh + sudo chmod 644 /etc/bashrc-pyro.sh echo "Looking for python3 in the path..." PYTHON3="$(sudo which python3)"