diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-09-11 21:07:02 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-09-11 21:07:02 +0300 |
commit | 5bc6702517b2eaadf7f25f7fbaefc559c20442d8 (patch) | |
tree | 2ab5f19a1d065cf8981f59fb8f14ee8349dc47b2 /install.sh | |
parent | b6c913a12cad506ed6ee2864d76fa93132341558 (diff) | |
download | arching-kaos-tools-5bc6702517b2eaadf7f25f7fbaefc559c20442d8.tar.gz arching-kaos-tools-5bc6702517b2eaadf7f25f7fbaefc559c20442d8.tar.bz2 arching-kaos-tools-5bc6702517b2eaadf7f25f7fbaefc559c20442d8.zip |
Removes nodejs as explicit depedency
- Avoid name differences from package to executable (nodejs vs node)
- Gets installed via npm
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ checkIfSudoAvailable(){ checkIfSudoAvailable # Depedencies check and install -declare -a depedencies=("curl" "wget" "bash" "jq" "nodejs" "npm" "gpg" "git") +declare -a depedencies=("curl" "wget" "bash" "jq" "npm" "gpg" "git" "make") for dep in "${depedencies[@]}" do printf "Checking for %s..." "$dep" |