fix
All checks were successful
release / release (push) Successful in 31s

This commit is contained in:
2026-05-24 15:07:00 +08:00
parent 02c7fa68aa
commit d21dcaa303

View File

@@ -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]),