aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-07 04:22:05 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-07 04:22:05 +0200
commitd002df626740a2ccc6d897a8c10cf65672ae0b74 (patch)
treeddabc13bd7cfdd516dd17389529adbe25b022308 /install.sh
parent1305976d458a92d7aa3b5ff456a9b1e7b49c8468 (diff)
downloadarching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.tar.gz
arching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.tar.bz2
arching-kaos-tools-d002df626740a2ccc6d897a8c10cf65672ae0b74.zip
Removed wget from dependencies
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 7a63e77..f2b7b27 100755
--- a/install.sh
+++ b/install.sh
@@ -68,7 +68,7 @@ checkIfSudoAvailable(){
checkIfSudoAvailable
# Depedencies check and install
-declare -a depedencies=("curl" "wget" "bash" "jq" "npm" "gpg" "git" "make" "screen" "gpg-agent")
+declare -a depedencies=("curl" "bash" "jq" "npm" "gpg" "git" "make" "screen" "gpg-agent")
for dep in "${depedencies[@]}"
do
printf "Checking for %s..." "$dep"