Skip to content

Instantly share code, notes, and snippets.

@cyan-2048
Last active November 7, 2021 09:09
Show Gist options
  • Save cyan-2048/4cd4bf0a679c2b5a5606ed616a19d844 to your computer and use it in GitHub Desktop.
Save cyan-2048/4cd4bf0a679c2b5a5606ed616a19d844 to your computer and use it in GitHub Desktop.
Manually updating all powercord plugins
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