From 163551212df2716d192b841bfed0ee854e53b438 Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Wed, 13 Nov 2024 16:35:51 -0700 Subject: [PATCH] fix repo logic, https://github.com/phetsims/perennial/issues/394 --- js/grunt/tasks/release-branch-list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/grunt/tasks/release-branch-list.ts b/js/grunt/tasks/release-branch-list.ts index cd7f471b..171c926a 100644 --- a/js/grunt/tasks/release-branch-list.ts +++ b/js/grunt/tasks/release-branch-list.ts @@ -18,7 +18,7 @@ import getOption from './util/getOption.js'; winston.default.transports.console.level = 'error'; - const repo = getOption( 'repo' ); + const repo = getOption( 'repo' )?.startsWith( 'perennial' ) ? null : getOption( 'repo' ); const order = getOption( 'order' ) || 'alphabetical'; if ( repo ) {