Skip to content

Commit

Permalink
Fix: Proper detection for libcurl4t64
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Jan 16, 2025
1 parent 8a5aed2 commit 5113756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/postfix-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ do_ubuntu() {
apt-get install -y postfix postfix-pcre postfix-ldap
apt-get install -y opendkim
local libcurl="libcurl4"
if "$(apt-cache search --names-only '^libcurl4t64$')" != ""; then
if [ "$(apt-cache search --names-only '^libcurl4t64$')" != "" ]; then
libcurl="libcurl4t64"
fi
apt-get install -y ca-certificates tzdata supervisor rsyslog bash opendkim-tools curl ${libcurl} libjsoncpp25 sasl2-bin postfix-lmdb procps logrotate cron net-tools colorized-logs netcat-openbsd ${RELEASE_SPECIFIC_PACKAGES}
Expand Down

0 comments on commit 5113756

Please sign in to comment.