diff options
Diffstat (limited to 'resources/scripts/build/dependencies/debian')
-rwxr-xr-x | resources/scripts/build/dependencies/debian | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/scripts/build/dependencies/debian b/resources/scripts/build/dependencies/debian index e69aa568..92757b7b 100755 --- a/resources/scripts/build/dependencies/debian +++ b/resources/scripts/build/dependencies/debian @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # ubuntu2004 script: installs build dependencies for Ubuntu 20.04 # # Copyright (C) 2014, 2015, 2021 Leah Rowe <info@minifree.org> # Copyright (C) 2022 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 |