From 4e063d4cf0b6e08c69b3956b8b375030df757eb8 Mon Sep 17 00:00:00 2001 From: Zhe Sun <31067185+ZheSun88@users.noreply.github.com> Date: Thu, 7 Aug 2025 13:58:08 +0300 Subject: [PATCH] update source branch name after renaming latest to v24 --- scripts/pick/cherry-pick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pick/cherry-pick.js b/scripts/pick/cherry-pick.js index 770b29d8a5..98baee7a58 100755 --- a/scripts/pick/cherry-pick.js +++ b/scripts/pick/cherry-pick.js @@ -12,7 +12,7 @@ let tmpSource, tmpTarget, debug; const cmd = program .option('-d, --debug', 'run in debug mode') .option('-T, --tmp ', 'Temporary folder', './tmp') - .option('-s, --branchSource ', 'source branch', 'latest') + .option('-s, --branchSource ', 'source branch', 'v24') .option('-s, --tagSource ', 'Tag or Hash in the source branch that should be used for picking changes', 'HEAD') .option('-t, --branchTarget ', 'target branch', 'dsp') .option('-c, --config ', 'config file', cfgDefault) @@ -186,7 +186,7 @@ async function main() { log("Updating files") copyFolderRecursive("", "", config); await compileProject(tmpTarget); - commitChanges(tmpTarget, 'Update DSP branch from latest'); + commitChanges(tmpTarget, 'Update DSP branch from v24'); } main()