Skip to content

Commit

Permalink
Get rid of a duplicate badge
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Jul 30, 2024
1 parent 6aee0d0 commit 1047825
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ knitr::opts_chunk$set(
[![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)
[![CRAN status](https://www.r-pkg.org/badges/version/usethis)](https://CRAN.R-project.org/package=usethis)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![.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)
[![Codecov test coverage](https://codecov.io/gh/r-lib/usethis/graph/badge.svg)](https://app.codecov.io/gh/r-lib/usethis)
<!-- badges: end -->

Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
status](https://www.r-pkg.org/badges/version/usethis)](https://CRAN.R-project.org/package=usethis)
[![Lifecycle:
stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![.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)
[![Codecov test
coverage](https://codecov.io/gh/r-lib/usethis/graph/badge.svg)](https://app.codecov.io/gh/r-lib/usethis)
<!-- badges: end -->
Expand Down Expand Up @@ -61,8 +60,8 @@ library(usethis)
# Create a new package -------------------------------------------------
path <- file.path(tempdir(), "mypkg")
create_package(path)
#> βœ” Creating '/tmp/Rtmpyt1hd6/mypkg/'.
#> βœ” Setting active project to "/private/tmp/Rtmpyt1hd6/mypkg".
#> βœ” Creating '/tmp/RtmpCJHMlj/mypkg/'.
#> βœ” Setting active project to "/private/tmp/RtmpCJHMlj/mypkg".
#> βœ” Creating 'R/'.
#> βœ” Writing 'DESCRIPTION'.
#> Package: mypkg
Expand All @@ -80,8 +79,8 @@ create_package(path)
#> βœ” Setting active project to "<no active project>".
# only needed since this session isn't interactive
proj_activate(path)
#> βœ” Setting active project to "/private/tmp/Rtmpyt1hd6/mypkg".
#> βœ” Changing working directory to '/tmp/Rtmpyt1hd6/mypkg/'
#> βœ” Setting active project to "/private/tmp/RtmpCJHMlj/mypkg".
#> βœ” Changing working directory to '/tmp/RtmpCJHMlj/mypkg/'

# Modify the description ----------------------------------------------
use_mit_license("My Name")
Expand Down

0 comments on commit 1047825

Please sign in to comment.