mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
8 lines
185 B
Batchfile
Executable file
8 lines
185 B
Batchfile
Executable file
@echo off
|
|
: batch file for generating the windows .exe installer
|
|
set PYTHON="c:\Python26\python.exe"
|
|
rd /S /Q build
|
|
call build.bat
|
|
rd /S /Q dist
|
|
%PYTHON% setup.py py2exe
|
|
@pause
|