Skip to content

Commit

Permalink
Merge pull request #65 from richfitz/cran-fix-202307
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Jul 18, 2023
2 parents 050f0a7 + a4f0972 commit 668d7c9
Show file tree
Hide file tree
Showing 6 changed files with 177 additions and 178 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: stevedore
Title: Docker Client
Version: 0.9.5
Version: 0.9.6
Description: Work with containers over the Docker API. Rather than
using system calls to interact with a docker client, using the
API directly means that we can receive richer information from
Expand Down
3 changes: 1 addition & 2 deletions R/docker_client_support.R
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ pull_status_printer <- function(stream = stdout()) {
cur <- x$progressDetail[["current"]]
tot <- x$progressDetail[["total"]]
str <- sprintf("%s: %s %s/%s %d%%%s", x[["id"]], x[["status"]],
# pretty_bytes(cur), pretty_bytes(tot),
cur, tot,
pretty_bytes(cur), pretty_bytes(tot),
round(cur / tot * 100),
endl)
} else {
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- badges: start -->
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![R build status](https://github.com/richfitz/stevedore/workflows/R-CMD-check/badge.svg)](https://github.com/richfitz/stevedore/actions)
[![codecov.io](https://codecov.io/github/richfitz/stevedore/coverage.svg?branch=master)](https://codecov.io/github/richfitz/stevedore?branch=master)
[![codecov.io](https://codecov.io/github/richfitz/stevedore/coverage.svg?branch=master)](https://app.codecov.io/github/richfitz/stevedore?branch=master)
[![](https://www.r-pkg.org/badges/version/stevedore)](https://cran.r-project.org/package=stevedore)
<!-- badges: end -->

Expand Down
Loading

0 comments on commit 668d7c9

Please sign in to comment.