lib/icarus/mod/cli/base.rb in Icarus-Mod-Tools-2.1.3 vs lib/icarus/mod/cli/base.rb in Icarus-Mod-Tools-2.1.4
- old
+ new
@@ -9,15 +9,15 @@
module Mod
module CLI
# The Base CLI class for Icarus Mod Tools. This is inherited by all subcommands.
class Base < Thor
class_option :config,
- aliases: "-C", type: :string, default: File.join(Dir.home, "/.imtconfig.json"),
- desc: "Path to the config file"
+ aliases: "-C", type: :string, default: File.join(Dir.home, "/.imtconfig.json"),
+ desc: "Path to the config file"
class_option :version,
- aliases: "-V", type: :boolean,
- desc: "Print the version and exit"
+ aliases: "-V", type: :boolean,
+ desc: "Print the version and exit"
def self.exit_on_failure?
true
end
end