Skip to content

Commit

Permalink
fix repo logic, #394
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Nov 13, 2024
1 parent 181fbed commit 1635512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grunt/tasks/release-branch-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) {
Expand Down

0 comments on commit 1635512

Please sign in to comment.