Last active
November 7, 2021 09:09
-
-
Save cyan-2048/4cd4bf0a679c2b5a5606ed616a19d844 to your computer and use it in GitHub Desktop.
Manually updating all powercord plugins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var plugins = [ | |
"badges-everywhere", | |
"pc-docs", | |
"pc-spotify", | |
"bdCompat", | |
"pc-emojiUtility", | |
"pc-tags", | |
"better-formatting", | |
"pc-hastebin", | |
"pc-updater", | |
"better-replies", | |
"pc-heygirl", | |
"power-bottom", | |
"better-status-indicators", | |
"pc-i18n", | |
"Powercord-BlurNSFW", | |
"channel-typing", | |
"pc-lmgtfy", | |
"powercord-LinkChannels", | |
"Hypesquad-HouseSwap", | |
"pc-mock", | |
"premid-powercord", | |
"nsfw-gate-bypass", | |
"pc-moduleManager", | |
"quick-delete", | |
"pc-clickableEdits", | |
"pc-notices", | |
"spotify-crack", | |
"pc-codeblocks", | |
"pc-rpc", | |
"text-react", | |
"pc-commands", | |
"pc-sdk", | |
"urban", | |
"pc-connections", | |
"pc-settings", | |
"user-details", | |
]; | |
var plugins_tmp = []; | |
for (let p of plugins) { | |
plugins_tmp.push(`cd ${p} && git pull && cd .. && `); | |
} | |
// hint: you should sort it alphabetically coz why not | |
plugins_tmp = plugins_tmp.join("") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment