From a1780543c5ae4341edc05e200afb110a2b99fa71 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Tue, 20 Jan 2026 13:42:13 -0800 Subject: [PATCH] fix: Update URLs in migration plugin --- plugins/migration/bin/rename.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/migration/bin/rename.js b/plugins/migration/bin/rename.js index 6745590f38..25a0066597 100644 --- a/plugins/migration/bin/rename.js +++ b/plugins/migration/bin/rename.js @@ -16,7 +16,7 @@ import {readFileSync, statSync, writeFileSync} from 'fs'; import * as versionUtils from './versions.js'; import JSON5 from 'json5'; -const DATABASE_URL = `https://raw.githubusercontent.com/google/blockly/master/scripts/migration/renamings.json5`; +const DATABASE_URL = `https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/main/packages/blockly/scripts/migration/renamings.json5`; export const rename = createSubCommand( 'rename', @@ -57,7 +57,7 @@ export const rename = createSubCommand( /** * Gets the database of renames. * @param {string=} url The URL to fetch the renamings database from, or - * undefined to fetch from master. + * undefined to fetch from main. * @returns {!Promise} The database of renames as an object. */ export async function getDatabase(url = undefined) { @@ -69,7 +69,7 @@ export async function getDatabase(url = undefined) { if (e instanceof SyntaxError) { process.stderr.write( 'Unable to parse the renamings database. Please ' + - 'report the issue at github.com/google/blockly/issues/new/choose\n', + 'report the issue at github.com/RaspberryPiFoundation/blockly/issues/new/choose\n', ); process.exit(); }