Slightly reorder experimental sync commands

This commit is contained in:
Wesley Wigham 2019-06-05 14:58:22 -07:00
parent 38da682de7
commit ec4ca6b619
No known key found for this signature in database
GPG key ID: D59F87F60C5400C9

View file

@ -30,9 +30,9 @@ async function main() {
runSequence([
["git", ["clean", "-fdx"]],
["git", ["checkout", "."]],
["git", ["fetch", "-fu", "origin", "master:master"]],
["git", ["checkout", "master"]],
["git", ["remote", "add", "fork", remoteUrl]], // Add the remote fork
["git", ["fetch", "origin", "master:master"]],
]);
const gh = new Octokit();