Differences From Artifact [1c1dcdc43a]:
- Executable file build/web/process_queue — part of check-in [9a27037143] at 2014-07-20 16:15:56 on branch trunk — Added support for a debug build (user: rkeene, size: 2632) [annotate] [blame] [check-ins using]
To Artifact [78920355a8]:
- Executable file build/web/process_queue — part of check-in [592e72598f] at 2014-07-23 01:17:34 on branch trunk — Updated to output environment variables set (user: rkeene, size: 2801) [annotate] [blame] [check-ins using]
| ︙ | |||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | + + + + + + |
catch {
file delete "${outfile}.log"
}
catch {
set cmd [list $script $buildinfo(tcl_version) {*}$args]
set fd [open "${outfile}.log" w+]
puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\""
if {[info exists ::env(STRIP)]} {
puts $fd "Running: export STRIP=\"$::env(STRIP)\""
}
puts $fd "Running: $cmd"
close $fd
}
catch {
exec {*}$cmd >> "${outfile}.log" 2>@1
}
|
| ︙ |