Skip to content

Commit

Permalink
Fix minor bug just introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
lmrodriguezr committed Jun 17, 2024
1 parent 95af6b3 commit 02fee9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/miga/cli/action/db.rb
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def unarchive(file, db_name)
tmp = File.join(tmp_archive, "#{db_name}.old")
File.rename(target, tmp)
File.rename(source, target)
File.rm_rf(tmp)
FileUtils.rm_rf(tmp)
else
File.rename(source, target)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/miga/cli/action/init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def parse_cli
opt.on(
'--[no-]optional',
'Should I try setting up the optional software?',
'Automatically sets answers for mytaxa, rdp, and reads'
'Automatically sets answers for mytaxa, rdp, and read-processing'
) { |v| cli[:optional] = v }
opt.on(
'--daemon-type STRING',
Expand Down
2 changes: 1 addition & 1 deletion lib/miga/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module MiGA
# - String indicating release status:
# - rc* release candidate, not released as gem
# - [0-9]+ stable release, released as gem
VERSION = [1.3, 15, 7].freeze
VERSION = [1.3, 15, 8].freeze

##
# Nickname for the current major.minor version.
Expand Down

0 comments on commit 02fee9a

Please sign in to comment.