mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Fix jaq: Download platform specific binary (#3766)
* choose architecture dynamically
This commit is contained in:
parent
8d8936dfac
commit
aba218e6d7
|
@ -21,6 +21,7 @@ All notable changes to this project will be documented in this file. The format
|
||||||
|
|
||||||
- **Internal:**
|
- **Internal:**
|
||||||
- `.gitattributes`: Always use LF line endings on checkout for files with shell script content ([#3755](https://github.com/docker-mailserver/docker-mailserver/pull/3755))
|
- `.gitattributes`: Always use LF line endings on checkout for files with shell script content ([#3755](https://github.com/docker-mailserver/docker-mailserver/pull/3755))
|
||||||
|
- Fix missing 'jaq' binary for ARM architecture ([#3766](https://github.com/docker-mailserver/docker-mailserver/pull/3766))
|
||||||
|
|
||||||
## [v13.2.0](https://github.com/docker-mailserver/docker-mailserver/releases/tag/v13.2.0)
|
## [v13.2.0](https://github.com/docker-mailserver/docker-mailserver/releases/tag/v13.2.0)
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ function _install_getmail() {
|
||||||
|
|
||||||
function _install_utils() {
|
function _install_utils() {
|
||||||
_log 'debug' 'Installing utils sourced from Github'
|
_log 'debug' 'Installing utils sourced from Github'
|
||||||
curl -sL https://github.com/01mf02/jaq/releases/latest/download/jaq-v1.2.0-x86_64-unknown-linux-musl -o /usr/bin/jaq && chmod +x /usr/bin/jaq
|
curl -sL "https://github.com/01mf02/jaq/releases/latest/download/jaq-v1.2.0-$(uname -m)-unknown-linux-gnu" -o /usr/bin/jaq && chmod +x /usr/bin/jaq
|
||||||
}
|
}
|
||||||
|
|
||||||
function _remove_data_after_package_installations() {
|
function _remove_data_after_package_installations() {
|
||||||
|
|
Loading…
Reference in a new issue