Skip to content

Commit

Permalink
Fix FastAAI location for case-sensitive systems
Browse files Browse the repository at this point in the history
  • Loading branch information
lmrodriguezr committed Mar 22, 2024
1 parent 91ee900 commit 2c6a718
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/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def perform
. "$MIGA_HOME/.miga_rc"
# Ensure MiGA & submodules are first in PATH
export PATH="$MIGA/bin:$PATH"
for util in enveomics/Scripts FastAAI/FastAAI FastAAI multitrim ; do
for util in enveomics/Scripts FastAAI/fastaai multitrim ; do
export PATH="$MIGA/utils/$util:$PATH"
done
BASH
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, 13, 6].freeze
VERSION = [1.3, 13, 7].freeze

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

##
# Date of the current gem relese.
VERSION_DATE = Date.new(2024, 3, 20)
VERSION_DATE = Date.new(2024, 3, 22)

##
# References of MiGA
Expand Down

0 comments on commit 2c6a718

Please sign in to comment.