From 617e711c702b87e570be090c2cb925ba59dcda6d Mon Sep 17 00:00:00 2001 From: Kingo64 Date: Wed, 18 Nov 2020 18:01:22 +1100 Subject: [PATCH] Fix DB wipe script --- run-windows.cmd | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/run-windows.cmd b/run-windows.cmd index e1e291f..c73d9c8 100644 --- a/run-windows.cmd +++ b/run-windows.cmd @@ -151,7 +151,6 @@ goto start :wipe :: Delete database and re-init cls -cd %database% -rm -fr data -mkdir data -goto initDB \ No newline at end of file +rmdir /S /Q %database%data +mkdir %database%data +goto initDB