Skip to content

Commit c348043

Browse files
committed
Fix PATH handling.
1 parent f055a5d commit c348043

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
include:
31-
- name: OpenSSL 3.2.1 build
31+
- name: OpenSSL 3.2 build
3232
config: --enable-mods-shared=reallyall --enable-maintainer-mode
3333
env: |
3434
TEST_OPENSSL3=3.2.1
3535
APR_VERSION=1.7.4
3636
APU_VERSION=1.6.3
3737
APU_CONFIG="--with-crypto"
3838
CLEAR_CACHE=1
39-
- name: OpenSSL 3.2.1 -Werror build
39+
- name: OpenSSL 3.2 -Werror build
4040
config: --enable-mods-shared=reallyall --enable-maintainer-mode
4141
notest-cflags: -Werror -O2
4242
env: |
@@ -45,7 +45,7 @@ jobs:
4545
APU_VERSION=1.6.3
4646
APU_CONFIG="--with-crypto"
4747
CLEAR_CACHE=1
48-
- name: OpenSSL 3.2.0 no-engine build
48+
- name: OpenSSL 3.2 no-engine build
4949
config: --enable-mods-shared=reallyall --enable-maintainer-mode
5050
env: |
5151
TEST_OPENSSL3=3.2.1

test/travis_run_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fi
6969
if test -v TEST_OPENSSL3; then
7070
CONFIG="$CONFIG --with-ssl=$HOME/root/openssl3"
7171
export LD_LIBRARY_PATH=$HOME/root/openssl3/lib:$HOME/root/openssl3/lib64
72-
export PATH=$HOME/root/openssl3/bin:$HOME/root/openssl3/bin
72+
export PATH=$HOME/root/openssl3/bin:$PATH
7373
openssl version
7474
fi
7575

0 commit comments

Comments
 (0)