diff options
Diffstat (limited to 'resources/scripts/build/dependencies/void')
-rwxr-xr-x | resources/scripts/build/dependencies/void | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/scripts/build/dependencies/void b/resources/scripts/build/dependencies/void index b94345c1..b556351a 100755 --- a/resources/scripts/build/dependencies/void +++ b/resources/scripts/build/dependencies/void @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # void script: installs build dependencies for Void Linux # # Copyright (C) 2021 Caleb La Grange <thonkpeasant@protonmail.com> +# Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,7 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -if [ $EUID -ne 0 ]; then +if [ "$(id -u)" -ne 0 ]; then printf "This script must be run as root\n" exit 1 fi |