Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1465


Ignore:
Timestamp:
03/30/09 14:24:58 (15 years ago)
Author:
abeham
Message:

added /B and /Y switch to copy command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r1464 r1465  
    8585echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
    8686if "%Platform%" == "x86" (   
    87   copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
     87  copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
    8888) else if "%Platform%" == "x64" (
    89   copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
     89  copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
    9090) else if "%Platform%" == "AnyCPU" (
    9191  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
    92     copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
     92    copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
    9393  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
    94     copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
     94    copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
    9595  ) else (
    9696    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
Note: See TracChangeset for help on using the changeset viewer.