Skip to content

Commit

Permalink
feat(catchup script): add the missing fetch ref-upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueCutOfficial committed Jan 3, 2024
1 parent 16aa930 commit 9a19a1c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/catchup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ try {
// Create a catchup branch out of the current branch (should be up to date master)
const catchupBranch = `catchup-${newEmberVersion}`;
runShell(`git switch --create ${catchupBranch}`);
// Fetch the latest ref-upstream branch (English version under translation on this repo)
runShell('git fetch ref-upstream');
// Fetch the latest updates in the official Ember Guides
runShell('git fetch upstream');
// Output the list of markdown files impacted by latest changes on upstream
Expand Down

0 comments on commit 9a19a1c

Please sign in to comment.