From d21dcaa30363a03566cd151cc95e0920874a71a0 Mon Sep 17 00:00:00 2001 From: hanruo <552455797@qq.com> Date: Sun, 24 May 2026 15:07:00 +0800 Subject: [PATCH] fix --- src/lib/tasks.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/tasks.js b/src/lib/tasks.js index 6d13511..9f99ee2 100644 --- a/src/lib/tasks.js +++ b/src/lib/tasks.js @@ -48,7 +48,6 @@ function zshInstallPlan() { const steps = [ run("apt update", "sudo", aptArgs("update")), - run("apt upgrade", "sudo", aptArgs("upgrade", "-y")), run("install zsh & friends", "sudo", aptArgs("install", "zsh", "git", "curl", "wget", "-y")), run("git credential helper = store", "git", ["config", "--global", "credential.helper", "store"]), run("change shell to zsh", "sudo", ["chsh", "-s", "/bin/zsh", os.userInfo().username]),