<pre style='margin:0'>
Perry E. Metzger (pmetzger) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/79cbdd79769e9203e72060de8247f4091c0ba4cb">https://github.com/macports/macports-ports/commit/79cbdd79769e9203e72060de8247f4091c0ba4cb</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 79cbdd79769e9203e72060de8247f4091c0ba4cb
</span>Author: Austin Ziegler <austin@zieglers.ca>
AuthorDate: Sun Oct 29 20:28:53 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    scientiaCLI: fix fish completions location
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    `$destroot/$prefix/share/fish/completions` is for the completion files
</span><span style='display:block; white-space:pre;color:#404040;'>    included with fish, not for use by package managers installing
</span><span style='display:block; white-space:pre;color:#404040;'>    additional files. The correct location is
</span><span style='display:block; white-space:pre;color:#404040;'>    `$destroot/$prefix/share/fish/vendor_completions.d`.
</span>---
 science/scientiaCLI/Portfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/scientiaCLI/Portfile b/science/scientiaCLI/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7b4308ebb35..db88e8fb0cb 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/scientiaCLI/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/scientiaCLI/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,7 @@ PortGroup           golang 1.0
</span> go.setup            github.com/goDoCer/scientiaCLI 93a18e9
 github.tarball_from archive
 version             0.0.1
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> categories          science education
 license             GPL-3
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -50,7 +50,7 @@ post-destroot {
</span>     xinstall -d ${zsh_completion_dir}
     system -W ${destroot}${prefix}/bin "./scientia-cli completion zsh > ${zsh_completion_dir}/_${bin_name}"
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set fish_completion_dir ${destroot}${prefix}/share/fish/completions
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set fish_completion_dir ${destroot}${prefix}/share/fish/vendor_completions.d
</span>     xinstall -d ${fish_completion_dir}
     system -W ${destroot}${prefix}/bin "./scientia-cli completion fish > ${fish_completion_dir}/${bin_name}.fish"
 }
</pre><pre style='margin:0'>

</pre>