Check-in [b494891f05]
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
208
209
210
211
212
213
214
215
216

217


218
219
220
221
222
223
224
		set regfile [file join $workdir file]
		set extfile [file join $workdir $extfiletail]
		catch {
			file mkdir $workdir
		}

		if {$multifile} {
			catch {
				cd $pkgdir


				exec zip -r $extfile .


			}
		} else {
			set origfile [lindex [glob $pkgdir *] 0]

			file copy -force -- $origfile $extfile
		}








|


>
|
>
>







207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
		set regfile [file join $workdir file]
		set extfile [file join $workdir $extfiletail]
		catch {
			file mkdir $workdir
		}

		if {$multifile} {
			if {[catch {
				cd $pkgdir

				file delete $extfile
				exec zip -r $extfile . -x build.log
			} err]} {
				puts "Error while zipping: $err"
			}
		} else {
			set origfile [lindex [glob $pkgdir *] 0]

			file copy -force -- $origfile $extfile
		}