1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-25 23:21:29 +03:00

M #-: Add -R short option for recursive operations (#2555)

This commit is contained in:
Daniel Clavijo Coca 2023-03-09 10:47:55 -06:00 committed by GitHub
parent ddbaf61264
commit 19c6b7c5ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ EOT
RECURSIVE={
:name => "recursive",
:short => "-R",
:large => "--recursive",
:description => "Applies the action to the template plus any "+
"image defined in DISK"

View File

@ -78,7 +78,7 @@ CommandParser::CmdParser.new(ARGV) do
RECURSIVE = {
:name => 'recursive',
:short => '-r',
:short => '-R',
:large => '--recursive',
:description => 'Clone the template recursively (templates and images)'
}