diff options
author | Nathan Cutler <ncutler@suse.com> | 2019-03-15 10:08:20 +0100 |
---|---|---|
committer | Nathan Cutler <ncutler@suse.com> | 2019-03-15 10:08:20 +0100 |
commit | b064918ed71bb9aa214cb8defcd4ef20f2e7db55 (patch) | |
tree | 08ee6749340808a1a41542d60b07898860ac33c9 /src/script | |
parent | script: enable nautilus in backport-create-issue (diff) | |
download | ceph-b064918ed71bb9aa214cb8defcd4ef20f2e7db55.tar.xz ceph-b064918ed71bb9aa214cb8defcd4ef20f2e7db55.zip |
script: enable nautilus in ceph-backport.sh
Signed-off-by: Nathan Cutler <ncutler@suse.com>
Diffstat (limited to 'src/script')
-rwxr-xr-x | src/script/ceph-backport.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/script/ceph-backport.sh b/src/script/ceph-backport.sh index 8e62a310f75..bc873a08dcc 100755 --- a/src/script/ceph-backport.sh +++ b/src/script/ceph-backport.sh @@ -105,8 +105,11 @@ elif [[ "x$milestone" = "xluminous" ]] ; then elif [[ "x$milestone" = "xmimic" ]] ; then milestone_number=11 target_branch=mimic +elif [[ "x$milestone" = "xnautilus" ]] ; then + milestone_number=12 + target_branch=nautilus else - echo "Please enter hammer, jewel, kraken, luminous, or mimic" + echo "Please enter hammer, jewel, kraken, luminous, mimic, or nautilus" exit 1 fi echo "Milestone is $milestone and milestone number is $milestone_number" |