Overview
Comment: | Updated to exclude build log from packages Updated to rebuild zip files, even if they already exist |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b494891f05bd906f0a81ad9b5e43f50d6c206517 |
User & Date: | rkeene on 2010-02-05 06:15:17 |
Other Links: | manifest | tags |
Context
2010-02-05
| ||
06:16 | Updated to not rebuild zip files unless requested check-in: 552b62761a user: rkeene tags: trunk | |
06:15 | Updated to exclude build log from packages Updated to rebuild zip files, even if they already exist check-in: b494891f05 user: rkeene tags: trunk | |
06:07 | Corrected documentation regarding get_extensions check-in: 3744cd1713 user: rkeene tags: trunk | |
Changes
Modified server/teapot_index from [07d237bd6c] to [6548de250e].
207 207 set regfile [file join $workdir file] 208 208 set extfile [file join $workdir $extfiletail] 209 209 catch { 210 210 file mkdir $workdir 211 211 } 212 212 213 213 if {$multifile} { 214 - catch { 214 + if {[catch { 215 215 cd $pkgdir 216 216 217 - exec zip -r $extfile . 217 + file delete $extfile 218 + exec zip -r $extfile . -x build.log 219 + } err]} { 220 + puts "Error while zipping: $err" 218 221 } 219 222 } else { 220 223 set origfile [lindex [glob $pkgdir *] 0] 221 224 222 225 file copy -force -- $origfile $extfile 223 226 } 224 227