From c9b5e577f2e9c1d1954ec95e29e3483f5b680bb1 Mon Sep 17 00:00:00 2001 From: evansiroky Date: Wed, 28 Nov 2018 19:12:29 -0800 Subject: [PATCH] fix(git): pull changes into master --- lib/git.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/git.js b/lib/git.js index 730b150..ed2034f 100644 --- a/lib/git.js +++ b/lib/git.js @@ -67,6 +67,9 @@ async function mergeMasterIntoDev (context) { // the snapshot release await execa('git', ['checkout', branch], execaOpts) + // pull changes into master + await execa('git', ['pull'], execaOpts) + // checkout dev branch await execa('git', ['checkout', devBranch], execaOpts)