<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository mpbb.

</pre>
<p><a href="https://github.com/macports/mpbb/commit/5075f176ea64c355302438b949bb51b1b46786ed">https://github.com/macports/mpbb/commit/5075f176ea64c355302438b949bb51b1b46786ed</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 5075f17  mpbb-gather-archives: Fix checking device of path
</span>5075f17 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5075f176ea64c355302438b949bb51b1b46786ed
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Thu Nov 19 23:05:31 2020 -0600

<span style='display:block; white-space:pre;color:#404040;'>    mpbb-gather-archives: Fix checking device of path
</span>---
 mpbb-gather-archives | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/mpbb-gather-archives b/mpbb-gather-archives
</span><span style='display:block; white-space:pre;color:#808080;'>index 194b9cf..c0e1968 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/mpbb-gather-archives
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/mpbb-gather-archives
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -82,7 +82,7 @@ gather-archives() {
</span>         if ! curl -fIsL "${archive_site}/${archive_port}/${archive_basename}" > /dev/null; then
             echo "Staging ${archive_type} archive for upload: ${archive_basename}"
             mkdir -p "${archive_dir}" || { status=$?; break; }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            if [ "$(device-of-path "${archive_path}")" = "$(device-of-path "${archive_dir}/${archive_basename}")" ]; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if [ "$(device-of-path "${archive_path}")" = "$(device-of-path "${archive_dir}")" ]; then
</span>                 ln "${archive_path}" "${archive_dir}/${archive_basename}" || { status=$?; break; }
             else
                 cp -p "${archive_path}" "${archive_dir}/${archive_basename}" || { status=$?; break; }
</pre><pre style='margin:0'>

</pre>