From bd7688f9e732521a1afa461dfdab163d013cdefc Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 6 Jul 2021 00:13:09 +0200 Subject: [PATCH] Do not install deps on CLI upgrade [ci skip] --- abra | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abra b/abra index 6e61419..8e4bd81 100755 --- a/abra +++ b/abra @@ -2491,9 +2491,9 @@ OPTIONS sub_upgrade() { if [[ "$abra___dev" == "true" ]]; then - curl https://install.abra.coopcloud.tech | bash -s -- --dev + curl https://install.abra.coopcloud.tech | bash -s -- --dev --no-deps else - curl https://install.abra.coopcloud.tech | bash + curl https://install.abra.coopcloud.tech | bash --no-deps fi }