|
Revision 48, 0.5 kB
(checked in by ug, 5 years ago)
|
Add windows build scripts to repository.
|
| Line | |
|---|
| 1 |
import os |
|---|
| 2 |
version = '05' |
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
for dirname in ['tcl8.3\\http1.0', 'tcl8.3\\http2.3', 'tcl8.3\\tcltest1.0', |
|---|
| 7 |
'tcl8.3\\opt0.4', 'tk8.3\\demos', 'tk8.3\\images']: |
|---|
| 8 |
os.system('rd /S /Q c:\\kombilo%s\\dist\\kombilo\\tcl\\%s' % (version, dirname)) |
|---|
| 9 |
|
|---|
| 10 |
for filename in ['tcl8.3\\safe.tcl']: |
|---|
| 11 |
os.system('del /Q c:\\kombilo%s\\dist\\kombilo\\tcl\\%s' % (version, filename)) |
|---|
| 12 |
|
|---|
| 13 |
os.system('copy c:\kombilo\kombilo.icl c:\kombilo%s\dist\kombilo' % version) |
|---|
| 14 |
|
|---|