Skip to content

Commit

Permalink
capitalization is ok
Browse files Browse the repository at this point in the history
  • Loading branch information
monicagerber committed Oct 29, 2024
1 parent b1fea79 commit 7a1a351
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/connect_hidra.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#' @examples \dontrun{connect_hidra("mac")}
connect_hidra <- function(system = "mac") {

if (system == "mac") {
if (system == "mac" | system == "Mac") {
driver <- "ODBC Driver 18 for SQL Server"
} else if (system == "windows") {
} else if (system == "windows" | system == "Windows") {
driver <- "SQL Server"
} else {
stop("System must be 'mac' or 'windows'")
Expand Down

0 comments on commit 7a1a351

Please sign in to comment.