Changeset 4514


Ignore:
Timestamp:
Jul 16, 2014, 4:38:50 PM (10 years ago)
Author:
gah
Message:

tool execution split out from gui, oauth modules added.

Location:
branches/1.3/lang/tcl/scripts
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3/lang/tcl/scripts/Makefile.in

    r3056 r4514  
    4343                $(srcdir)/library.tcl \
    4444                $(srcdir)/objects.tcl \
     45                $(srcdir)/resources.tcl \
    4546                $(srcdir)/result.tcl \
    46                 $(srcdir)/units.tcl
     47                $(srcdir)/task.tcl \
     48                $(srcdir)/units.tcl \
     49                $(srcdir)/xauth.tcl
    4750
    4851OBJECTS         = \
  • branches/1.3/lang/tcl/scripts/exec.tcl

    r4180 r4514  
    4747    set execctl ""
    4848
    49     set status [catch {
    50         eval blt::bgexec ::Rappture::execctl \
    51             -keepnewline yes \
    52             -killsignal SIGTERM \
    53             -onoutput {{::Rappture::_exec_out stdout}} \
    54             -onerror {{::Rappture::_exec_out stderr}} \
    55             $args
    56     } result]
     49    set status [catch {eval blt::bgexec ::Rappture::execctl \
     50        -keepnewline yes \
     51        -killsignal SIGTERM \
     52        -onoutput {{::Rappture::_exec_out stdout}} \
     53        -onerror {{::Rappture::_exec_out stderr}} \
     54        $args} result]
    5755
    5856    # add any extra stuff pending from the last stdout/stderr change
     
    8179            }
    8280        }
     81        puts stderr $result
    8382        error $result
    8483    }
Note: See TracChangeset for help on using the changeset viewer.