1
0
Fork 0
forked from glenux/mfm

Merge pull request 'fix: delay config loading' (#21) from feature/14-add-support-for-global-config-file into develop

Reviewed-on: glenux/mfm#21
This commit is contained in:
Glenn Y. Rolland 2023-11-18 22:36:20 +00:00
commit 3f22971fa8

View file

@ -88,12 +88,11 @@ module GX
end
def run()
@config.load_from_file
case @config.mode
when Config::Mode::ShowVersion
STDOUT.puts "#{PROGRAM_NAME} #{VERSION}"
when Config::Mode::Mount
@config.load_from_file
mount
end
end