From e588b9f69d68489db7e6ee707d9dbd587f408f0a Mon Sep 17 00:00:00 2001 From: olstjos <75325509+olstjos@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:47:21 -0500 Subject: [PATCH] Update Makefile to fix composer install crash, should be 10.3 not 9.3 Without this fix, any project based on this build will crash when running the make command , the make command does a scaffold build. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 620c337..ace1b2a 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,5 @@ PLATFORM := $(shell uname -s) $(eval GIT_USERNAME := $(if $(GIT_USERNAME),$(GIT_USERNAME),gitlab-ci-token)) $(eval GIT_PASSWORD := $(if $(GIT_PASSWORD),$(GIT_PASSWORD),$(CI_JOB_TOKEN))) DOCKER_REPO := https://github.com/drupalwxt/docker-scaffold.git -GET_DOCKER := $(shell [ -d docker ] || git clone --branch 9.2.x $(DOCKER_REPO) docker) +GET_DOCKER := $(shell [ -d docker ] || git clone --branch 10.3.x $(DOCKER_REPO) docker) include docker/Makefile