Skip to content

Commit 2001e4b

Browse files
committed
Fix uname -p shell commands
1 parent bb381c3 commit 2001e4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ test-8.0: ## Test php8.0 build only
2525

2626
_test-version: _test-prerequisites ## Test php build for VERSION="" and VARIANT=""
2727
docker buildx bake --load \
28-
--set "*.platform=$$(uname -p)" \
28+
--set "*.platform=$(uname -p)" \
2929
php$${VERSION//.}-$(VARIANT)-all
3030
PHP_VERSION="$(VERSION)" BRANCH=v4 VARIANT=$(VARIANT) ./tests-suite/bash_unit -f tap ./tests-suite/*.sh || (notify-send -u critical "Tests failed ($(VERSION)-$(VARIANT))" && exit 1)
3131
notify-send -u critical "Tests passed with success ($(VERSION)-$(VARIANT))"
3232

3333
_test-version-quick: _test-prerequisites ## Test php build for VERSION="" and VARIANT="" (without node variants)
3434
docker buildx bake --load \
35-
--set "*.platform=$$(uname -p)" \
35+
--set "*.platform=$(uname -p)" \
3636
php$${VERSION//.}-slim-$(VARIANT) php$${VERSION//.}-$(VARIANT)
3737
PHP_VERSION="$(VERSION)" BRANCH=v4 VARIANT=$(VARIANT) ./tests-suite/bash_unit -f tap ./tests-suite/*.sh || (notify-send -u critical "Tests failed ($(VERSION)-$(VARIANT))" && exit 1)
3838
notify-send -u critical "Tests passed with success ($(VERSION)-$(VARIANT)) - without node-*"

0 commit comments

Comments
 (0)