Skip to content

Commit

Permalink
fix: 🐛 these didn't provide the correct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjohnst86 committed Sep 11, 2024
1 parent b2876a2 commit d5a1b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/admin.R
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ admin_create_project <- function(path) {
# Add processing files to the data-raw folder
fs::dir_create("data-raw")
usethis::use_template("create-data.R", "data-raw/create-data.R", package = "ukbAid")
git_commit_file("data-raw", "Add R scripts used for getting raw data from UKB")
git_commit_file("data-raw/create-data.R", "Add R scripts used for getting raw data from UKB")
readr::write_csv(rap_variables, "data-raw/rap-variables.csv")
git_commit_file("data-raw/rap-variables.csv", "Add variable list that is specific to RAP")

Expand All @@ -153,7 +153,7 @@ admin_create_project <- function(path) {

usethis::use_mit_license()
fs::file_delete("LICENSE")
git_commit_file("LICENSE", "Add MIT License to the project")
git_commit_file("LICENSE.md", "Add MIT License to the project")
git_commit_file("DESCRIPTION", "Update the DESCRIPTION file with the MIT License")
})
}
Expand Down

0 comments on commit d5a1b14

Please sign in to comment.