We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59dd37 commit 2ffe1c6Copy full SHA for 2ffe1c6
1 file changed
playbooks/supplemental/cvml/README.md
@@ -389,7 +389,7 @@ $playbookRoot = (Get-Location).Path
389
if (-not $env:OPENCV_INSTALL_ROOT) {throw "OPENCV_INSTALL_ROOT is not set."}
390
if (-not $env:OpenCV_DIR) {throw "OpenCV_DIR is not set."}
391
392
-$work = $work = Join-Path (Get-Location) "cvml-test"
+$work = Join-Path (Get-Location) "cvml-test"
393
New-Item -ItemType Directory -Force -Path $work | Out-Null
394
395
try {
@@ -480,7 +480,8 @@ if [ -z "${OPENCV_INSTALL_ROOT:-}" ]; then
480
exit 1
481
fi
482
483
-work="$(mktemp -d)"
+work="$PWD/cvml-test"
484
+mkdir -p "$work"
485
cleanup() {
486
rm -rf "$work"
487
}
0 commit comments