Skip to content

Commit

Permalink
fix for #332
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiecek committed Jan 2, 2019
1 parent c5fd0c1 commit a68825e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 1 addition & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ Suggests:
ggplot2,
devtools,
knitr
Enhances:
archivist.github
URL: https://pbiecek.github.io/archivist/
BugReports: https://github.com/pbiecek/archivist/issues
RoxygenNote: 6.0.1.9000
RoxygenNote: 6.1.1
VignetteBuilder: knitr
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
archivist 2.3.2
----------------------------------------------------------------
* The `https://raw.githubusercontent.com` serwis is closed, this is why we need to update hooks to `https://raw.githack.com` ([#332](https://github.com/pbiecek/archivist/issues/332)).

archivist 2.3.1
----------------------------------------------------------------
* Internal changes in the `cache()` function due to ([#327](https://github.com/pbiecek/archivist/issues/327)). Effect of the bytecompiler needs further research.
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ setDefaultArchivistEnv <- function() {
.onLoad <- function(...) {
setDefaultArchivistEnv()
assign( x = "sqlite", value = dbDriver( "SQLite" ), envir = .ArchivistEnv )
assign( x = ".GithubURL", value = "https://raw.githubusercontent.com", envir = .ArchivistEnv )
assign( x = ".GithubURL", value = "https://raw.githack.com", envir = .ArchivistEnv )
}

onUnload <- function( libpath ){
Expand Down

0 comments on commit a68825e

Please sign in to comment.