[sysadmin/neon-tooling] /: it executes as sh so use posix compliant shell
Carlos De Maine <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 4f9a8f2fabac4ece199a4629148fe6d7bc0f122a by Carlos De Maine. Committed on 20/07/2026 at 23:56. Pushed by carlosdem into branch 'master'. it executes as sh so use posix compliant shell (even though it has a bash shebang - shrug) M +1 -1 deploy_in_container.sh https://invent.kde.org/sysadmin/neon-tooling/-/commit/4f9a8f2fabac4ece199a4629148fe6d7bc0f122a diff --git a/deploy_in_container.sh b/deploy_in_container.sh index 9294d830..5a70544f 100755 --- a/deploy_in_container.sh +++ b/deploy_in_container.sh @@ -37,7 +37,7 @@ fi ESSENTIAL_PACKAGES="cmake ca-certificates debhelper dirmngr build-essential git-core libffi-dev libgit2-dev libiconv-hook-dev libpcre2-dev libruby libssh2-1-dev libssl-dev libzstd-dev pkg-config rake ruby ruby-dev wget zlib1g-dev" if [ "$DIST" = "resolute" ]; then - ESSENTIAL_PACKAGES+=" libjitterentropy3-dev" + ESSENTIAL_PACKAGES="$ESSENTIAL_PACKAGES libjitterentropy3-dev" fi i="5"