Skip to content

Commit

Permalink
Use variable for facets sha sum so we can extract it for bioconda build
Browse files Browse the repository at this point in the history
  • Loading branch information
dariober committed Dec 18, 2018
1 parent afde115 commit a994152
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install/install_pkgs.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ REPOS<- 'https://cran.r-project.org'
# path of R libraries
LIB<- NULL

FACETS_REF<- '434b5ce'
# -----------------------------------------------------------------------------

if(is.null(LIB)){
Expand Down Expand Up @@ -106,7 +107,7 @@ tryCatch({
tryCatch({
suppressMessages(library(facets))
}, error = function(err) {
devtools::install_github("mskcc/facets", ref = "434b5ce", lib= LIB)
devtools::install_github("mskcc/facets", ref = FACETS_REF, lib= LIB)
}
)

Expand Down

0 comments on commit a994152

Please sign in to comment.