Skip to content

Commit

Permalink
fix windows install status
Browse files Browse the repository at this point in the history
  • Loading branch information
Miachol committed Jun 24, 2017
1 parent 726afaa commit a1bfb84
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2017-06-24 Li Jianfeng <[email protected]>

* Fix windows install status

2017-06-23 Li Jianfeng <[email protected]>

* Cancel windows install step (Download still work)
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: BioInstaller
Title: Lightweight Biology Software Installer
Version: 0.1.2
Version: 0.1.2.1
Authors@R: person("Jianfeng", "Li", email = "[email protected]", role = c("aut", "cre"))
Description:
Can be used to install and download massive bioinformatics analysis softwares and databases, such as NGS reads mapping tools with its required databases.
Expand Down
3 changes: 3 additions & 0 deletions R/utils_function.R
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ runcmd <- function(cmd, verbose = TRUE) {

# Run a group of cmd
for_runcmd <- function(cmd_vector, verbose = TRUE) {
if (is.null(cmd_vector)) {
return(0)
}
status.vector <- NULL
for (i in cmd_vector) {
if (i != "") {
Expand Down

0 comments on commit a1bfb84

Please sign in to comment.