Skip to content

Commit a1bfb84

Browse files
committed
fix windows install status
1 parent 726afaa commit a1bfb84

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2017-06-24 Li Jianfeng <lee_jianfeng@sjtu.edu.cn>
2+
3+
* Fix windows install status
4+
15
2017-06-23 Li Jianfeng <lee_jianfeng@sjtu.edu.cn>
26

37
* Cancel windows install step (Download still work)

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: BioInstaller
22
Title: Lightweight Biology Software Installer
3-
Version: 0.1.2
3+
Version: 0.1.2.1
44
Authors@R: person("Jianfeng", "Li", email = "lee_jianfeng@sjtu.edu.cn", role = c("aut", "cre"))
55
Description:
66
Can be used to install and download massive bioinformatics analysis softwares and databases, such as NGS reads mapping tools with its required databases.

R/utils_function.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ runcmd <- function(cmd, verbose = TRUE) {
6868

6969
# Run a group of cmd
7070
for_runcmd <- function(cmd_vector, verbose = TRUE) {
71+
if (is.null(cmd_vector)) {
72+
return(0)
73+
}
7174
status.vector <- NULL
7275
for (i in cmd_vector) {
7376
if (i != "") {

0 commit comments

Comments
 (0)