From 9c31be912daf69467260f5be8546fcfb3fe925c5 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 2 Jun 2017 11:26:09 -0400 Subject: [PATCH] Makes copyfromgit.bat copy the remote master logs --- legacy/bin/copyfromgit.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/legacy/bin/copyfromgit.bat b/legacy/bin/copyfromgit.bat index 4de01db772..acb9114902 100644 --- a/legacy/bin/copyfromgit.bat +++ b/legacy/bin/copyfromgit.bat @@ -9,8 +9,9 @@ del /S /F /Q gamecode\%AB%\ >nul 2>nul echo Copying files xcopy gitrepo gamecode\%AB% /Y /X /K /R /H /I /C /V /E /Q /EXCLUDE:copyexclude.txt >nul -mkdir gamecode\%AB%\.git\logs +mkdir gamecode\%AB%\.git\logs\refs\remotes\origin copy gitrepo\.git\logs\HEAD gamecode\%AB%\.git\logs\HEAD /D /V /Y >nul +copy gitrepo\.git\logs\refs\remotes\origin\master gamecode\%AB%\.git\logs\refs\remotes\origin\master /D /V /Y >nul mklink gamecode\%AB%\nudge.py ..\..\bot\nudge.py >nul rmdir /q gamecode\%AB%\data >nul 2>nul