Skip to content

Commit

Permalink
Fix issue with miga find --add
Browse files Browse the repository at this point in the history
  • Loading branch information
lmrodriguezr committed Apr 12, 2024
1 parent 7c2de04 commit 0ef11db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/miga/cli/action/find.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def perform
if cli[:add]
cli.say "Registering: #{dn}"
d = Dataset.new(p, dn, cli[:ref])
add_metadata(d)
cli.add_metadata(d)
p.add_dataset(dn)
res = d.first_preprocessing(true)
cli.say "- #{res}"
Expand Down
4 changes: 2 additions & 2 deletions lib/miga/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ module MiGA
# - String indicating release status:
# - rc* release candidate, not released as gem
# - [0-9]+ stable release, released as gem
VERSION = [1.3, 14, 1].freeze
VERSION = [1.3, 14, 2].freeze

##
# Nickname for the current major.minor version.
VERSION_NAME = 'mezzotint'

##
# Date of the current gem relese.
VERSION_DATE = Date.new(2024, 4, 1)
VERSION_DATE = Date.new(2024, 4, 12)

##
# References of MiGA
Expand Down

0 comments on commit 0ef11db

Please sign in to comment.