• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1@echo off
2REM libprep.bat
3REM
4REM SYNTAX: libprep <path-to-new-lib-dir>
5REM
6SETLOCAL
7
8set dest=%1
9
10echo Copying files to %dest%.
11echo Existing files will be overwritten.
12echo.
13PAUSE
14
15REM Copy Distro then PyMod files to the destination
16XCOPY Lib %dest% /S /I /Y
17XCOPY PyMod-2.7.10\Lib %dest% /S /I /Y
18
19echo DONE
20ENDLOCAL
21