aboutsummaryrefslogtreecommitdiffstats
path: root/anime-face-detector/make.bat
diff options
context:
space:
mode:
authorcarp <25677564+carp@users.noreply.github.com>2020-07-13 13:40:11 -0400
committercarp <25677564+carp@users.noreply.github.com>2020-07-13 13:40:11 -0400
commit50e411320563894d411b0c37d37cb16105a908af (patch)
tree01e1a43e11f9e51cf6a46d9a3d40814b76ad6d7b /anime-face-detector/make.bat
parentf457064bb15a00010959e664492d87f3bfe82537 (diff)
downloadyaoi-communism-50e411320563894d411b0c37d37cb16105a908af.tar.gz
yaoi-communism-50e411320563894d411b0c37d37cb16105a908af.zip
removing submodule
Diffstat (limited to 'anime-face-detector/make.bat')
-rw-r--r--anime-face-detector/make.bat20
1 files changed, 0 insertions, 20 deletions
diff --git a/anime-face-detector/make.bat b/anime-face-detector/make.bat
deleted file mode 100644
index b0d9bff..0000000
--- a/anime-face-detector/make.bat
+++ /dev/null
@@ -1,20 +0,0 @@
-@echo off
-if /i "%1" == "clean" goto clean
-goto all
-
-:all
-python setup.py build_ext --inplace
-rd /s /q build
-
-goto exit
-
-
-
-:clean
-del /f /s /q *.cpp
-del /f /s /q *.c
-del /f /s /q *.pyd
-
-goto exit
-
-:exit