Fix bug in setup test script.

This commit is contained in:
Adam Black 2021-08-19 16:28:21 -04:00
parent 7e08fa1737
commit ff4f8337f8
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
driverPath <- file.path(Sys.getenv("HOME"), "drivers")
if(!dir.exists(driverPath)) dir.create(driverPath)
if(!Sys.getenv("LOCAL_TEST" == "TRUE")) {
if(Sys.getenv("LOCAL_TEST") != "TRUE") {
DatabaseConnector::downloadJdbcDrivers("all", pathToDriver = driverPath)
}