From 737e63148280fb0614fa8eb5744c830b76b5e2de Mon Sep 17 00:00:00 2001 From: Yusuke Nishiguchi Date: Mon, 11 Oct 2021 23:02:28 +0900 Subject: [PATCH] fix: replace rm with del --- .../examples/android/solutions/create_win_symlinks.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mediapipe/examples/android/solutions/create_win_symlinks.bat b/mediapipe/examples/android/solutions/create_win_symlinks.bat index 57bafeb2b..8b9580dda 100644 --- a/mediapipe/examples/android/solutions/create_win_symlinks.bat +++ b/mediapipe/examples/android/solutions/create_win_symlinks.bat @@ -4,19 +4,19 @@ @rem for hands example app. cd /d %~dp0 cd hands\src\main -rm res +del res mklink /d res ..\..\..\res @rem for facemesh example app. cd /d %~dp0 cd facemesh\src\main -rm res +del res mklink /d res ..\..\..\res @rem for face detection example app. cd /d %~dp0 cd facedetection\src\main -rm res +del res mklink /d res ..\..\..\res dir