Skip to content

Commit

Permalink
Fixed finally the table printing.
Browse files Browse the repository at this point in the history
  • Loading branch information
muschellij2 committed Aug 28, 2018
1 parent da513f2 commit 9f3327a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: ghtravis
Type: Package
Title: Interfaces with GitHub API and Travis CI
Version: 0.10.0
Version: 0.10.1
Author: John Muschelli
Maintainer: John Muschelli <muschellij2@gmail.com>
Description: Interfaces and compares things on 'GitHub'
Expand Down
3 changes: 2 additions & 1 deletion R/latest_release_with_binary.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,12 @@ latest_release_with_binary = function(
check_str = paste0("_R", r_version(), sys_ext(), "$")
check = grepl(pattern = check_str, ddf$asset_name)
if (any(check)) {
check[is.na(check)] = FALSE
ddf = ddf[ check, ]
}
}
# ord = order(ddf$asset_created_at, ddf$asset_updated_at, decreasing = TRUE)
ord = order(df$asset_updated_at, df$asset_created_at, decreasing = TRUE)
ord = order(ddf$asset_updated_at, ddf$asset_created_at, decreasing = TRUE)
ddf = ddf[ord, ]
if (verbose) {
message("Table is")
Expand Down

0 comments on commit 9f3327a

Please sign in to comment.