diff --git a/rs/nervous_system/tools/release-runscript/src/main.rs b/rs/nervous_system/tools/release-runscript/src/main.rs index aaa3ada5850..fb86e1bd38e 100644 --- a/rs/nervous_system/tools/release-runscript/src/main.rs +++ b/rs/nervous_system/tools/release-runscript/src/main.rs @@ -389,13 +389,13 @@ fn run_submit_proposals(cmd: SubmitProposals) { sns_proposal_text_paths, } = cmd; - // Ask the user for the SUBMITTING_NEURON_ID (example: 51) - if input_yes_or_no("Do you want to submit upgrade proposals?", false) { + if !input_yes_or_no("Do you want to submit upgrade proposals?", false) { println!("Skipping upgrade proposal submission and all following steps."); return; } println!(); + // Ask the user for the SUBMITTING_NEURON_ID (example: 51) println!("We are now going to submit the proposals. For this step, we need your neuron ID. If you are submitting on behalf of DFINITY, your neuron ID is written at this notion page: ."); let neuron_id = input("Enter your neuron ID (e.g. 51)");