metrumresearchgroup / review

helpful tools for organizing and performing quality control (QC) tasks
https://metrumresearchgroup.github.io/review/
2 stars 0 forks source link

ghe updates #1

Closed michaelmcd18 closed 1 year ago

andersone1 commented 1 year ago
andersone1 commented 1 year ago

change:

  if (dir.exists("/tmp/svn-testing")) {
    try(system("rm -r /tmp/svn-testing/"))
    try(system("rm -rf /tmp/svn-testing/svn-proj-ABC-123"))
  }

to:

  if (dir.exists("/tmp/svn-testing")) {
    try(system("rm -rf /tmp/svn-testing"))
  }

(this will blow away that directory and anything in it all in one shot)