This commit is contained in:
pika 2025-05-12 16:44:47 +02:00
parent 0b4838b1c6
commit baa834cbb8

View file

@ -108,9 +108,9 @@
cd "$zenDir" || mkdir -p "$zenDir" && cd "$zenDir"
echo_info "Downloading .tar.gz from $cloneUrl"
if command_exists wget; then
wget "$cloneUrl" - | tar -xvzf
elif command_exists curl; then
curl -fsSL "$cloneUrl" -o "zen.linux-${ARCH}.tar.gz"
wget "$cloneUrl"
# elif command_exists curl; then
# curl -fsSL "$cloneUrl" -o "zen.linux-${ARCH}.tar.gz"
else
exit 69
echo_error "curl/wget is required but missing.."