diff options
author | Pascal Terjan <pterjan@mageia.org> | 2020-02-26 23:35:20 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2020-02-26 23:35:39 +0000 |
commit | c24826298b65f8cea34512d1c38124b2ac3421cb (patch) | |
tree | 3e3c15541e97f967e5f8ab934aecaac5ab7a436a | |
parent | e42dd99745d0fe915565faf4d8735cc1be4be45f (diff) | |
download | puppet-c24826298b65f8cea34512d1c38124b2ac3421cb.tar puppet-c24826298b65f8cea34512d1c38124b2ac3421cb.tar.gz puppet-c24826298b65f8cea34512d1c38124b2ac3421cb.tar.bz2 puppet-c24826298b65f8cea34512d1c38124b2ac3421cb.tar.xz puppet-c24826298b65f8cea34512d1c38124b2ac3421cb.zip |
Fix syntax error in mirror cleaner
-rwxr-xr-x | modules/buildsystem/templates/cleaner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/buildsystem/templates/cleaner.rb b/modules/buildsystem/templates/cleaner.rb index 3f818e46..d0dc064d 100755 --- a/modules/buildsystem/templates/cleaner.rb +++ b/modules/buildsystem/templates/cleaner.rb @@ -21,7 +21,7 @@ def process opts = GetoptLong.new( [ '--help', '-h', GetoptLong::NO_ARGUMENT ], [ '--archs', '-a', GetoptLong::REQUIRED_ARGUMENT ], - [ '--auto', '-A', GetoptLong::NO_ARGUMENT ] + [ '--auto', '-A', GetoptLong::NO_ARGUMENT ], [ '--base', '-p', GetoptLong::REQUIRED_ARGUMENT ], [ '--media', '-m', GetoptLong::REQUIRED_ARGUMENT ], [ '--destination', '-d', GetoptLong::REQUIRED_ARGUMENT ], |