From 955c0656e60f326b50d126ae5a46a8285ab446e0 Mon Sep 17 00:00:00 2001 From: David Chen Date: Fri, 15 Aug 2025 11:12:22 -0500 Subject: [PATCH] update upgrade script --- bin/upgrade-all | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/upgrade-all b/bin/upgrade-all index 2889558..3adc840 100755 --- a/bin/upgrade-all +++ b/bin/upgrade-all @@ -125,8 +125,7 @@ class ParallelTaskRunner: def main(): runner = ParallelTaskRunner() - runner.add_task("Claude Code Update", "npm install -g @anthropic-ai/claude-code") - runner.add_task("CCUSAGE Update", "npm install -g ccusage") + runner.add_task("Claude Code Update", "npm install -g -f @anthropic-ai/claude-code ccusage ccstatusline") runner.add_task("Homebrew Update", "brew update && brew upgrade --greedy") runner.add_task("Config Git Pull", "cd ~/.config && git pull") runner.add_task("Neovim Config Git Pull", "cd ~/.config/nvim && git pull") @@ -136,4 +135,4 @@ def main(): sys.exit(0 if success else 1) if __name__ == "__main__": - main() \ No newline at end of file + main()