<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/d63675dc4fc48ee0dc48dd764fe5bf48121c920b">https://github.com/macports/mpbb/commit/d63675dc4fc48ee0dc48dd764fe5bf48121c920b</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 d63675d  Bash syntax fix
</span>d63675d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit d63675dc4fc48ee0dc48dd764fe5bf48121c920b
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Thu Aug 8 10:09:46 2024 +1000

<span style='display:block; white-space:pre;color:#404040;'>    Bash syntax fix
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The -o works with standard 'test' but not with bash '[['...
</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 ff19e70..01b831d 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;'>@@ -53,7 +53,7 @@ install-port() {
</span>     # $option_prefix and $thisdir are set in mpbb
     # shellcheck disable=SC2154
     local imagepath=$("$(readlink "${option_prefix}/bin/port-tclsh")" "${thisdir}/tools/archive-path.tcl" "$@")
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    if [[ -f "$imagepath" -o -d "${imagepath%.*}" ]]; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if [[ -f "$imagepath" || -d "${imagepath%.*}" ]]; then
</span>         echo "$* already installed, nothing to do"
         # log: summary for the portwatcher
         echo "Building '$port' ... [OK]" >> "$log_subports_progress"
</pre><pre style='margin:0'>

</pre>