Overview
Comment: | in script triggers targets need to be returned as list |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
ee1d5c9fac14e0c5a23f0b1479968d53 |
User & Date: | mrwellan on 2018-05-23 14:53:12 |
Other Links: | branch diff | manifest | tags |
Context
2018-05-24
| ||
14:34 | Fixed mtutil script trigger to accurately get the new run name and target from the script output check-in: 7011408fb5 user: jmoon18 tags: v1.65 | |
2018-05-23
| ||
14:53 | in script triggers targets need to be returned as list check-in: ee1d5c9fac user: mrwellan tags: v1.65 | |
2018-05-22
| ||
17:39 | Fixed typo in warning for pktsdirs not being setup check-in: a3760325d1 user: jmoon18 tags: v1.65 | |
Changes
Modified mtut.scm from [dc1f744eed] to [17da53074e].
︙ | ︙ | |||
921 922 923 924 925 926 927 | (print "last-run: " last-run " need-run: " need-run) (if need-run (let* ((key-msg `((message . ,(conc ruletype ":" message)) (runname . ,runname) (runtrans . ,runtrans) (action . ,action) (areas . ,areas) | | | 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 | (print "last-run: " last-run " need-run: " need-run) (if need-run (let* ((key-msg `((message . ,(conc ruletype ":" message)) (runname . ,runname) (runtrans . ,runtrans) (action . ,action) (areas . ,areas) (target . `(,new-target)) ;; overriding with result from runing the script ))) (print "key-msg: " key-msg) (push-run-spec torun contour (if optional ;; we need to be able to differentiate same contour, different behavior. (conc runkey ":" optional) ;; NOTE: NOT COMPLETELY IMPLEMENTED. DO NOT USE runkey) key-msg))))))) |
︙ | ︙ |