Skip to content

Commit

Permalink
Merge pull request #33 from hoxo-m/fix_bug
Browse files Browse the repository at this point in the history
fix #32
  • Loading branch information
hoxo-m committed Jan 10, 2017
2 parents 59742f5 + 54eda12 commit b3b755b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: githubinstall
Type: Package
Version: 0.2.1.9000
Version: 0.2.1.9001
Title: A Helpful Way to Install R Packages Hosted on GitHub
Description: Provides an helpful way to install packages hosted on GitHub.
Authors@R: c(
Expand Down
8 changes: 7 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# githubinstall 0.2.0
# githubinstall 0.2.1.9001

## Bug fix

- Fixes crashing with repositories named NA. (#32)

# githubinstall 0.2.1

## Improvements

Expand Down
2 changes: 1 addition & 1 deletion R/gh_update_package_list.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ gh_update_package_list <- function() {
package_list <- fread(download_url, sep="\t", header = FALSE, stringsAsFactors = FALSE,
colClasses = c("character", "character", "character"),
col.names = c("username", "package_name", "title"),
showProgress = FALSE)
showProgress = FALSE, na.strings=NULL)
assign("package_list", package_list, envir = .options)
}

0 comments on commit b3b755b

Please sign in to comment.