<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/a995cfe9cbb30a234ee79b277596844fdd8a8386">https://github.com/macports/mpbb/commit/a995cfe9cbb30a234ee79b277596844fdd8a8386</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 a995cfe  Fix shellcheck warning
</span>a995cfe is described below

<span style='display:block; white-space:pre;color:#808000;'>commit a995cfe9cbb30a234ee79b277596844fdd8a8386
</span>Author: Clemens Lang <cal@macports.org>
AuthorDate: Sat Mar 10 18:08:20 2018 +0100

<span style='display:block; white-space:pre;color:#404040;'>    Fix shellcheck warning
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    $@ is only supposed to be used as "$@", for all uses within strings, $*
</span><span style='display:block; white-space:pre;color:#404040;'>    is the correct variable.
</span>---
 mpbb-install-port | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/mpbb-install-port b/mpbb-install-port
</span><span style='display:block; white-space:pre;color:#808080;'>index 33099da..8fc0b72 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/mpbb-install-port
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/mpbb-install-port
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -38,7 +38,7 @@ install-port() {
</span>     # $option_prefix and $thisdir are set in mpbb
     # shellcheck disable=SC2154
     if [[ -f $("${option_prefix}/bin/port-tclsh" "${thisdir}/tools/archive-path.tcl" "$@") ]]; then
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        echo "$@ already installed, nothing to do"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        echo "$* already installed, nothing to do"
</span>         # log: summary for the portwatcher
         echo "Building '$port' ... [OK]" >> "$log_subports_progress"
         echo "$@" >> "${option_work_dir}/all_ports"
</pre><pre style='margin:0'>

</pre>