Skip to content

Commit 1047825

Browse files
committed
Get rid of a duplicate badge
1 parent 6aee0d0 commit 1047825

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

β€ŽREADME.Rmd

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ knitr::opts_chunk$set(
1919
[![R-CMD-check](https://github.com/r-lib/usethis/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/usethis/actions/workflows/R-CMD-check.yaml)
2020
[![CRAN status](https://www.r-pkg.org/badges/version/usethis)](https://CRAN.R-project.org/package=usethis)
2121
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
22-
[![.github/workflows/R-CMD-check](https://github.com/r-lib/usethis/actions/workflows/.github/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/usethis/actions/workflows/.github/workflows/R-CMD-check.yaml)
2322
[![Codecov test coverage](https://codecov.io/gh/r-lib/usethis/graph/badge.svg)](https://app.codecov.io/gh/r-lib/usethis)
2423
<!-- badges: end -->
2524

β€ŽREADME.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
status](https://www.r-pkg.org/badges/version/usethis)](https://CRAN.R-project.org/package=usethis)
1111
[![Lifecycle:
1212
stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
13-
[![.github/workflows/R-CMD-check](https://github.com/r-lib/usethis/actions/workflows/.github/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/usethis/actions/workflows/.github/workflows/R-CMD-check.yaml)
1413
[![Codecov test
1514
coverage](https://codecov.io/gh/r-lib/usethis/graph/badge.svg)](https://app.codecov.io/gh/r-lib/usethis)
1615
<!-- badges: end -->
@@ -61,8 +60,8 @@ library(usethis)
6160
# Create a new package -------------------------------------------------
6261
path <- file.path(tempdir(), "mypkg")
6362
create_package(path)
64-
#> βœ” Creating '/tmp/Rtmpyt1hd6/mypkg/'.
65-
#> βœ” Setting active project to "/private/tmp/Rtmpyt1hd6/mypkg".
63+
#> βœ” Creating '/tmp/RtmpCJHMlj/mypkg/'.
64+
#> βœ” Setting active project to "/private/tmp/RtmpCJHMlj/mypkg".
6665
#> βœ” Creating 'R/'.
6766
#> βœ” Writing 'DESCRIPTION'.
6867
#> Package: mypkg
@@ -80,8 +79,8 @@ create_package(path)
8079
#> βœ” Setting active project to "<no active project>".
8180
# only needed since this session isn't interactive
8281
proj_activate(path)
83-
#> βœ” Setting active project to "/private/tmp/Rtmpyt1hd6/mypkg".
84-
#> βœ” Changing working directory to '/tmp/Rtmpyt1hd6/mypkg/'
82+
#> βœ” Setting active project to "/private/tmp/RtmpCJHMlj/mypkg".
83+
#> βœ” Changing working directory to '/tmp/RtmpCJHMlj/mypkg/'
8584

8685
# Modify the description ----------------------------------------------
8786
use_mit_license("My Name")

0 commit comments

Comments
Β (0)