From 604b784e64fbbe24d8111bbfc53d59016871b244 Mon Sep 17 00:00:00 2001 From: Christopher Felegy Date: Sun, 21 Jul 2019 21:12:49 -0400 Subject: [PATCH] use proper \ in windows commands --- azure/docs.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/docs.bat b/azure/docs.bat index 35483b71e..cd64a2246 100644 --- a/azure/docs.bat +++ b/azure/docs.bat @@ -1,5 +1,5 @@ git clone https://github.com/discord-net/docs-static.git || EXIT /B 1 -RMDIR /S docs-static/latest || EXIT /B 1 +RMDIR /S docs-static\latest || EXIT /B 1 docfx.console/tools/docfx.exe docs/docfx.json -o docs-static/latest/ || EXIT /B 1 git config --global user.name "Discord.Net CI Robot" && git config --global user.email "robot@foxbot.me" git -C docs-static add -A || EXIT /B 1