diff --git a/tools/earthly/Dockerfile.template b/tools/earthly/Dockerfile.template index 19019af15..dbaf6c027 100644 --- a/tools/earthly/Dockerfile.template +++ b/tools/earthly/Dockerfile.template @@ -14,12 +14,12 @@ ARG name ARG version RUN <"${prefix}${target}/share/bash-completion/completions/foo" -#"${prefix}${target}/bin/foo" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/foo.fish" -#"${prefix}${target}/bin/foo" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_foo" +#"${prefix}/bin/foo" completion bash >"${prefix}/share/bash-completion/completions/foo" +#"${prefix}/bin/foo" completion fish >"${prefix}/share/fish/vendor_completions.d/foo.fish" +#"${prefix}/bin/foo" completion zsh >"${prefix}/share/zsh/vendor-completions/_foo" #EOF \ No newline at end of file diff --git a/tools/exa/Dockerfile.template b/tools/exa/Dockerfile.template index bd5e0b866..fd32d4c08 100644 --- a/tools/exa/Dockerfile.template +++ b/tools/exa/Dockerfile.template @@ -14,10 +14,10 @@ filename="$(basename "${url}")" curl --silent --location --fail --remote-name "${url}" unzip -q -o -d "/tmp" "${filename}" -mv /tmp/bin/exa "${prefix}${target}/bin/" -mv /tmp/man/exa.1 "${prefix}${target}/share/man/man1/" -mv /tmp/man/exa_colors.5 "${prefix}${target}/share/man/man5/" -mv /tmp/completions/exa.bash "${prefix}${target}/share/bash-completion/completions/exa" -mv /tmp/completions/exa.fish "${prefix}${target}/share/fish/vendor_completions.d/exa.fish" -mv /tmp/completions/exa.zsh "${prefix}${target}/share/zsh/vendor-completions/_exa" +mv /tmp/bin/exa "${prefix}/bin/" +mv /tmp/man/exa.1 "${prefix}/share/man/man1/" +mv /tmp/man/exa_colors.5 "${prefix}/share/man/man5/" +mv /tmp/completions/exa.bash "${prefix}/share/bash-completion/completions/exa" +mv /tmp/completions/exa.fish "${prefix}/share/fish/vendor_completions.d/exa.fish" +mv /tmp/completions/exa.zsh "${prefix}/share/zsh/vendor-completions/_exa" EOF \ No newline at end of file