Class: HammerCLIKatello::Repository::UploadContentCommand::BinaryPath
- Inherits:
-
HammerCLI::Options::Normalizers::File
- Object
- HammerCLI::Options::Normalizers::File
- HammerCLIKatello::Repository::UploadContentCommand::BinaryPath
- Defined in:
- lib/hammer_cli_katello/repository.rb
Instance Method Summary collapse
Instance Method Details
#format(path) ⇒ Object
397 398 399 400 401 402 403 404 405 406 407 |
# File 'lib/hammer_cli_katello/repository.rb', line 397 def format(path) fullpath = ::File.(path) if File.directory?(fullpath) Dir["#{fullpath}/*"] elsif File.exist?(fullpath) [fullpath] else Dir[fullpath] end end |