Skip to content

Commit

Permalink
Fix folder path.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmgarnier committed Jul 20, 2023
1 parent 91ede34 commit c9a3973
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/opencv.R
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ installOpenCV <- function(path = defaultOpenCVPath(), batch = FALSE) {

for (i in 1:2) {
if (archAvail[i] == TRUE) {
sourceDir <- paste0(tmpDir, "/opencv-4.7.0/")
contribDir <- paste0(tmpDir, "/opencv_contrib-4.7.0/modules")
sourceDir <- paste0(tmpDir, "/opencv-4.8.0/")
contribDir <- paste0(tmpDir, "/opencv_contrib-4.8.0/modules")
buildDir <- paste0(sourceDir, "build", arch[i])
dir.create(buildDir, showWarnings = FALSE)
openCVArch <- if (arch[i] == 64) "x64" else "x86"
Expand Down
4 changes: 2 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Test environments

* local M1 OS X 13.4.1, R 4.3.1
* local Windows 10, R 4.2.2
* local Ubuntu 22.04, R 4.2.2
* local Windows 10, R 4.3.1
* local Ubuntu 22.04, R 4.3.1
* Github Actions "windows-latest (release)"
* Github Actions "macOS-latest (release)"
* Github Actions "ubuntu-latest (release)"
Expand Down

0 comments on commit c9a3973

Please sign in to comment.