aboutsummaryrefslogtreecommitdiff
path: root/scripts/build
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-08-25 14:33:33 +0200
committerV <vendicated@riseup.net>2023-08-25 14:33:33 +0200
commit4df01b1e6231c6dfe51300aea37d14b92f74a652 (patch)
treebbbd1b5da2ac9093643328c9b9d105eb8d52f1cf /scripts/build
parentebe10d3fad85fc46b7df1637807734d950cd70bb (diff)
downloadVencord-4df01b1e6231c6dfe51300aea37d14b92f74a652.tar.gz
Vencord-4df01b1e6231c6dfe51300aea37d14b92f74a652.tar.bz2
Vencord-4df01b1e6231c6dfe51300aea37d14b92f74a652.zip
ci: fix generatePluginList
Diffstat (limited to 'scripts/build')
-rw-r--r--scripts/build/common.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/common.mjs b/scripts/build/common.mjs
index a12e9ee..8efe2be 100644
--- a/scripts/build/common.mjs
+++ b/scripts/build/common.mjs
@@ -138,7 +138,7 @@ export const gitRemotePlugin = {
build.onLoad({ filter, namespace: "git-remote" }, async () => {
let remote = process.env.VENCORD_REMOTE;
if (!remote) {
- const res = await promisify(exec)("git remote get-url origin", { encoding: "utf-8" });
+ const res = await promisify(exec)("git remote get-url origin", { encoding: "utf-8" });
remote = res.stdout.trim()
.replace("https://github.com/", "")
.replace("git@github.com:", "")