From 7709599f8073029ac42cafdfb72cf17914004d2a Mon Sep 17 00:00:00 2001 From: seraphik <3831167+seraphik@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:57:02 +0300 Subject: [PATCH] Minor bug fix : dnf requires elevated priveleges to enable modules. (#7493) Tested on Fedora and Rocky. Co-authored-by: h --- install-gui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-gui.sh b/install-gui.sh index bd888f1571c6..ab7824361907 100755 --- a/install-gui.sh +++ b/install-gui.sh @@ -38,7 +38,7 @@ if [ "$(uname)" = "Linux" ]; then elif type yum && [ -f /etc/rocky-release ] || [ -f /etc/fedora-release ]; then # RockyLinux echo "Installing on RockyLinux/Fedora" - dnf module enable nodejs:12 + sudo dnf module enable nodejs:12 sudo dnf install -y nodejs fi