Hi Bruce,
I'm looking at controlling what's being copied and gzipped and found that In netweba.tpw the code to set the source folder for the copy batch file builds an invalid path. Currently it is:
----
#IF(%gNetWebFolder = '')
#IF(%cwversion<7000)
#SET(%srcDir,%root & '3rdparty\libsrc\netweb\web\*.*')
#SET(%bindir,%root & '3rdparty\bin')
#ELSE
#SET(%srcDir,%root & 'accessory\libsrc\win\netweb\web\*.*')
#SET(%bindir,%root & 'accessory\bin')
#ENDIF
#ELSE
#SET(%srcdir,%gNetWebFolder &' \web')
#ENDIF
----
This line:
#SET(%srcdir,%gNetWebFolder &' \web')
And it looks like it should be:
#SET(%srcdir,%gNetWebFolder &'\web\*.*')
Thanks,
Larry Sand