<pre style='margin:0'>
Mojca Miklavec (mojca) pushed a commit to branch master
in repository macports-contrib.

</pre>
<p><a href="https://github.com/macports/macports-contrib/commit/0652903b19e54547f05ab2814b8edf845241491d">https://github.com/macports/macports-contrib/commit/0652903b19e54547f05ab2814b8edf845241491d</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 0652903  portindex2json.tcl: Make sure to put info on top
</span>0652903 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 0652903b19e54547f05ab2814b8edf845241491d
</span>Author: Mojca Miklavec <mojca@macports.org>
AuthorDate: Thu Jul 11 00:56:50 2019 +0200

<span style='display:block; white-space:pre;color:#404040;'>    portindex2json.tcl: Make sure to put info on top
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://github.com/macports/macports-contrib/pull/5
</span>---
 portindex2json/portindex2json.tcl | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/portindex2json/portindex2json.tcl b/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 7a9ff70..6ddd257 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/portindex2json/portindex2json.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -151,11 +151,12 @@ while {[gets $fd line] >= 0} {
</span>     lappend objects [::json::write object {*}[array get json_portinfo]]
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+set json_output [list]
</span> if {[array exists json_info]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set json_output(info) [::json::write object {*}[array get json_info]]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    lappend json_output info [::json::write object {*}[array get json_info]]
</span> }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-set json_output(ports) [::json::write array {*}$objects]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+lappend json_output ports [::json::write array {*}$objects]
</span> 
 chan configure stdout -encoding utf-8
<span style='display:block; white-space:pre;background:#ffe0e0;'>-puts [::json::write object {*}[array get json_output]]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+puts [::json::write object {*}$json_output]
</span></pre><pre style='margin:0'>

</pre>