소스 검색

Fix the target branch in tools/deploy.js

Konstantin Tarkus 9 년 전
부모
커밋
95ad092c69
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
 };