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()