Skip to content

Commit

Permalink
fix: resolve Windows path length issue by excluding long filename PDF…
Browse files Browse the repository at this point in the history
…s during build
  • Loading branch information
cafferychen777 committed Dec 31, 2024
1 parent e5a648c commit 9f60205
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@
^revdep$
^\.travis\.yml$
^codecov\.yml$

^inst/doc/.*\.pdf$
^inst/doc/reference/.*\.pdf$
^vignettes/.*_files$
^vignettes/.*_cache$
31 changes: 26 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
# R specific
.Rproj.user
.Rhistory
.RData
.Ruserdata
MicrobiomeStat.Rproj
.DS_Store
*.Rproj
renv/
renv.lock
inst/doc
/doc/
/Meta/

# Build related
*.tar.gz
src/*.o
src/*.so
src/*.dll
/revdep/

# Documentation
docs/
*.Rproj
renv/
renv.lock
*.pdf
# Ignore PDF files in docs/reference
docs/reference/*.pdf

# IDE
.idea/
.vscode/
.project
*~

# OS specific
.DS_Store
Thumbs.db
.directory
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Suggests:
ggtreeExtra,
testthat (>= 3.0.0)
Config/testthat/edition: 3
Config/build/clean-inst-doc: TRUE
Config/build/clean-docs-in-inst: TRUE
License: GPL-3
Encoding: UTF-8
LazyData: true
Expand Down

0 comments on commit 9f60205

Please sign in to comment.