Skip to content

Instantly share code, notes, and snippets.

@Rohit19060
Last active May 11, 2023 04:33
Show Gist options
  • Save Rohit19060/9d1f6f6d513503b77c978301561d19d0 to your computer and use it in GitHub Desktop.
Save Rohit19060/9d1f6f6d513503b77c978301561d19d0 to your computer and use it in GitHub Desktop.
Python Script for Updating CLIs
import os
commands = ["deno upgrade",
"flutter upgrade --force",
"git update-git-for-windows",
"rustup update",
"scoop update",
"scoop update *",
"yarn set version stable",
"npm i -g firebase firebase-tools forever grunt-cli jshint mocha node nodemon npm npm-check-updates react-native-cli typescript vercel sass @angular/cli vue-tsc concurrently yarn pnpm @githubnext/github-copilot-cli prisma",
"python.exe -m pip install --upgrade pip",
]
for c in commands:
os.system(c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment