From 013458378239473a7a5813f9d68a8368798e21b4 Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 29 Sep 2016 11:23:41 +0400 Subject: [PATCH] (PostBuildEvent): fixed 'directory already exists' warning. --- ArcFormats/ArcFormats.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/ArcFormats.csproj b/ArcFormats/ArcFormats.csproj index 74f504ad..d36417ce 100644 --- a/ArcFormats/ArcFormats.csproj +++ b/ArcFormats/ArcFormats.csproj @@ -789,7 +789,7 @@ exit 0 - mkdir "$(TargetDir)\GameData" + if not exist "$(TargetDir)\GameData" mkdir "$(TargetDir)\GameData" xcopy "$(ProjectDir)\Resources\Formats.dat" "$(TargetDir)\GameData\" /D /Y >NUL