mpir/build.vc9/file_copy.bat
2008-05-19 13:37:29 +00:00

4 lines
183 B
Batchfile

if not exist %1 ( echo file_copy failure: %1 not found && goto exit )
if exist %2 ( fc %1 %2 > nul && if not %errorlevel 1 goto exit )
echo copying %1 to %2 && copy %1 %2
:exit