Explorar o código

Fix the target branch in tools/deploy.js

Konstantin Tarkus %!s(int64=9) %!d(string=hai) anos
pai
achega
95ad092c69
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tools/deploy.js

+ 1 - 1
tools/deploy.js

@@ -37,5 +37,5 @@ export default async () => {
   // Push the contents of the build folder to the remote server via Git
   await repo.add('--all .');
   await repo.commit('Update ' + new Date().toISOString());
-  await repo.push(remote.name, remote.branch);
+  await repo.push(remote.name, 'master:' + remote.branch);
 };