Skip to content

Commit ca476f3

Browse files
committed
readlink on macos?
1 parent 937eb60 commit ca476f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/linux-build-and-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
mkdir -p pg build-pg install
147147
tar --extract --file postgresql.tar.bz2 --directory pg --strip-components 1
148148
cd build-pg
149-
../pg/configure --prefix="$(readlink -e ../install)" --with-openssl \
149+
../pg/configure --prefix="$(readlink -f ../install)" --with-openssl \
150150
--without-readline --without-zlib --without-libxml ${{ matrix.pg_extra_args }}
151151
make -j $(getconf _NPROCESSORS_ONLN)
152152
for ext in ${{ matrix.pg_extensions }}; do
@@ -159,7 +159,7 @@ jobs:
159159
for ext in ${{ matrix.pg_extensions }}; do
160160
make -C build-pg/contrib/${ext} install
161161
done
162-
echo "$(readlink -e install/bin)" >> "${GITHUB_PATH}"
162+
echo "$(readlink -f install/bin)" >> "${GITHUB_PATH}"
163163
164164
- name: Save PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }} Cache
165165
if: matrix.snapshot != 'snapshot' && steps.restore-postgresql-cache.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)