diff options
Diffstat (limited to 'resources/scripts/build/dependencies/arch')
-rwxr-xr-x | resources/scripts/build/dependencies/arch | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/scripts/build/dependencies/arch b/resources/scripts/build/dependencies/arch index 27be6f6f..99435394 100755 --- a/resources/scripts/build/dependencies/arch +++ b/resources/scripts/build/dependencies/arch @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # arch script: installs build dependencies for Arch Linux # # Copyright (C) 2021 Melissa Goad <mszoopers@protonmail.com> # 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 @@ -20,7 +21,7 @@ # -if [ $EUID -ne 0 ]; then +if [ "$(id -u)" -ne 0 ]; then printf "This script must be run as root\n" exit 1 fi |