Skip to content

Commit

Permalink
Fix tclsh path, disable TEA distro because of errors
Browse files Browse the repository at this point in the history
  • Loading branch information
apnadkarni committed Jul 27, 2024
1 parent c023312 commit d0525c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
rmdir/s/q build

set OLDTCLSH=%TCLSH%
set TCLSH=d:\tcl\debug\x64\bin\tclsh86t.exe
set TCLSH=d:\tcl\magic\bin\tclsh86t.exe

@rem Form the file names based on the version we are building
@for /f %%i in ('%TCLSH% src/taversion.tcl') do set TANAME=tarray-%%i
Expand All @@ -10,10 +10,10 @@ set TCLSH=d:\tcl\debug\x64\bin\tclsh86t.exe

cmd /c "envset x86 && cd src && %TCLSH% build.tcl extension -target win32-ix86-cl"
cmd /c "envset x64 && cd src && %TCLSH% build.tcl extension -target win32-x86_64-cl"
cmd /c "cd src && %TCLSH% build.tcl tea"
@rem cmd /c "cd src && %TCLSH% build.tcl tea"
cmd /c "envset x86 && cd xtal && %TCLSH% build.tcl extension -target win32-ix86-cl"
cmd /c "envset x64 && cd xtal && %TCLSH% build.tcl extension -target win32-x86_64-cl"
cmd /c "cd xtal && %TCLSH% build.tcl tea"
@rem cmd /c "cd xtal && %TCLSH% build.tcl tea"
cmd /c "cd ui && %TCLSH% build.tcl package"

copy doc\announce.txt build\lib\tarray\readme.txt
Expand All @@ -40,4 +40,4 @@ cd build\tea && tar cvf ../%XTALNAME%.tar %XTALNAME% && gzip ../%XTALNAME%.tar &
dos2unix build/lib/%UINAME%/readme.txt
cd build\lib && tar cvf ../%UINAME%.tar %UINAME% && gzip ../%UINAME%.tar && cd ..\..

set TCLSH=%OLDTCLSH%
set TCLSH=%OLDTCLSH%

0 comments on commit d0525c2

Please sign in to comment.