Skip to content

Commit

Permalink
installation exit code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DerrickWood committed May 13, 2015
1 parent feb4397 commit adfaa26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
v0.10.6-beta:
* fixed overflow bug in command line parsing
* fixed GRCh38.p2 bug in human genome downloads
* fixed installation exit code bug

v0.10.5-beta:
* fix bug in GRCh38 download to handle multi-fasta files
Expand Down
5 changes: 4 additions & 1 deletion install_kraken.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,8 @@ echo "To make things easier for you, you may want to copy/symlink the following"
echo "files into a directory in your PATH:"
for file in $KRAKEN_DIR/kraken*
do
[ -x "$file" ] && echo " $file"
if [ -x "$file" ]
then
echo " $file"
fi
done

0 comments on commit adfaa26

Please sign in to comment.