Skip to content

Commit

Permalink
Fixed PostBuilStep.bat to avoid creating unused folders
Browse files Browse the repository at this point in the history
  • Loading branch information
easly1989 committed Sep 6, 2019
1 parent a762463 commit 27fd2a9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions PostBuildStep.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ set libs=libs
set pdb=pdb
set data=data
set loc=localization
set img=images
echo %from%
echo %libs%
echo %pdb%
echo %data%
echo %loc%
echo %img%
echo %resources%
echo "Creating folders if necessary..."
if not exist %libs% mkdir %libs%
if not exist %pdb% mkdir %pdb%
if not exist %data% mkdir %data%
if not exist %loc% mkdir %loc%
if not exist %img% mkdir %img%
echo "Moving all dll files..."
move /Y %from%*.dll %libs%
move /Y %from%*.config %libs%
Expand All @@ -29,7 +26,6 @@ del /F /Q %from%*.*
echo "Copying files to resources"
xcopy /S /Y %resources%data %data%
xcopy /S /Y %resources%localization %loc%
xcopy /S /Y %resources%images %img%
echo "Moving DFAssist back to main directory..."
move /Y %libs%\DFAssist.dll %from%DFAssist.dll
echo "All done! :)"

0 comments on commit 27fd2a9

Please sign in to comment.