Skip to content

Commit 4dad040

Browse files
committed
fix build
1 parent 92046e2 commit 4dad040

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ endef
100100
define cakephp3
101101
build-cakephp-$(VERSION): install
102102
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
103-
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
103+
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --ignore-platform-reqs
104104
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
105105
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
106106

@@ -111,7 +111,7 @@ endef
111111
define cakephp4
112112
build-cakephp-$(VERSION): install
113113
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
114-
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
114+
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
115115
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
116116
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
117117

@@ -122,7 +122,7 @@ endef
122122
define cakephp5
123123
build-cakephp-$(VERSION): install
124124
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
125-
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
125+
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
126126
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
127127
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
128128

@@ -133,7 +133,7 @@ endef
133133
define chronos
134134
build-chronos-$(VERSION): install
135135
cd $(CHRONOS_SOURCE_DIR) && git checkout -f $(TAG)
136-
cd $(CHRONOS_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
136+
cd $(CHRONOS_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
137137
mkdir -p $(BUILD_DIR)/chronos/$(VERSION)
138138
cp -r static/assets/* $(BUILD_DIR)/chronos/$(VERSION)
139139

@@ -144,7 +144,7 @@ endef
144144
define elastic
145145
build-elastic-$(VERSION): install
146146
cd $(ELASTIC_SOURCE_DIR) && git checkout -f $(TAG)
147-
cd $(ELASTIC_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
147+
cd $(ELASTIC_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
148148
mkdir -p $(BUILD_DIR)/elastic-search/$(VERSION)
149149
cp -r static/assets/* $(BUILD_DIR)/elastic-search/$(VERSION)
150150

@@ -155,7 +155,7 @@ endef
155155
define queue
156156
build-queue-$(VERSION): install
157157
cd $(QUEUE_SOURCE_DIR) && git checkout -f $(TAG)
158-
cd $(QUEUE_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
158+
cd $(QUEUE_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
159159
mkdir -p $(BUILD_DIR)/queue/$(VERSION)
160160
cp -r static/assets/* $(BUILD_DIR)/queue/$(VERSION)
161161

@@ -166,7 +166,7 @@ endef
166166
define authentication
167167
build-authentication-$(VERSION): install
168168
cd $(AUTHENTICATION_SOURCE_DIR) && git checkout -f $(TAG)
169-
cd $(AUTHENTICATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
169+
cd $(AUTHENTICATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
170170
mkdir -p $(BUILD_DIR)/authentication/$(VERSION)
171171
cp -r static/assets/* $(BUILD_DIR)/authentication/$(VERSION)
172172

@@ -177,7 +177,7 @@ endef
177177
define authorization
178178
build-authorization-$(VERSION): install
179179
cd $(AUTHORIZATION_SOURCE_DIR) && git checkout -f $(TAG)
180-
cd $(AUTHORIZATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
180+
cd $(AUTHORIZATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugin --no-audit --no-security-blocking --ignore-platform-reqs
181181
mkdir -p $(BUILD_DIR)/authorization/$(VERSION)
182182
cp -r static/assets/* $(BUILD_DIR)/authorization/$(VERSION)
183183

0 commit comments

Comments
 (0)