1 Commits

Author SHA1 Message Date
d21dcaa303 fix
All checks were successful
release / release (push) Successful in 31s
2026-05-24 15:07:00 +08:00

View File

@@ -48,7 +48,6 @@ function zshInstallPlan() {
const steps = [ const steps = [
run("apt update", "sudo", aptArgs("update")), 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("install zsh & friends", "sudo", aptArgs("install", "zsh", "git", "curl", "wget", "-y")),
run("git credential helper = store", "git", ["config", "--global", "credential.helper", "store"]), run("git credential helper = store", "git", ["config", "--global", "credential.helper", "store"]),
run("change shell to zsh", "sudo", ["chsh", "-s", "/bin/zsh", os.userInfo().username]), run("change shell to zsh", "sudo", ["chsh", "-s", "/bin/zsh", os.userInfo().username]),