From 5011e0301d2f14523fbae82a354fde8a073059d0 Mon Sep 17 00:00:00 2001 From: "T. R. Bernstein" <137705289+trbernstein@users.noreply.github.com> Date: Mon, 1 Jul 2024 22:30:55 +0200 Subject: [PATCH] Abort module installation if not root --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d43d975..b5ac6f5 100755 --- a/install.sh +++ b/install.sh @@ -139,7 +139,7 @@ function main() { askNecessaryQuestions [ -z "${config_only}" ] || return 0 - requireRootPrivileges + requireRootPrivileges || return 10 installModules }