fix: tui should work again
This commit is contained in:
parent
a3d827bdb0
commit
7243935bf9
1 changed files with 5 additions and 4 deletions
|
@ -13,13 +13,14 @@ module GX::Commands
|
|||
def initialize(@config : GX::Config)
|
||||
@config.load_from_env
|
||||
@config.load_from_file
|
||||
# @file_system_manager = FileSystemManager.new(@config)
|
||||
@file_system_manager = FileSystemManager.new(@config)
|
||||
end
|
||||
|
||||
def execute
|
||||
# raise Models::InvalidFilesystemError.new("Invalid filesystem") if filesystem.nil?
|
||||
# @file_system_manager.mount_or_umount(filesystem)
|
||||
# @file_system_manager.auto_open(filesystem) if filesystem.mounted? && @config.auto_open?
|
||||
filesystem = @file_system_manager.choose_filesystem
|
||||
raise Models::InvalidFilesystemError.new("Invalid filesystem") if filesystem.nil?
|
||||
@file_system_manager.mount_or_umount(filesystem)
|
||||
@file_system_manager.auto_open(filesystem) if filesystem.mounted? && @config.auto_open?
|
||||
end
|
||||
|
||||
def self.handles_mode
|
||||
|
|
Loading…
Reference in a new issue