Skip to content

Commit c6a4b36

Browse files
committed
Fix release expansion issue
Fix go-gitea#14578 Signed-off-by: Andrew Thornton <[email protected]>
1 parent 54eae00 commit c6a4b36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ npm-cache: .npm-cache $(FOMANTIC_WORK_DIR)/node_modules/fomantic-ui
675675
npm config --userconfig=.npmrc set cache=.npm-cache
676676
rm -rf node_modules && npm install --no-save
677677
npm config --userconfig=$(FOMANTIC_WORK_DIR)/.npmrc set cache=../../.npm-cache
678-
echo esbuild-{darwin-64,linux-{arm,arm64,32,64},windows-{32,64}}@$(ESBUILD_VERSION) | tr " " "\n" | xargs -n 1 -P 4 npm cache add
678+
echo $(foreach build, darwin-64 $(foreach arch,arm arm64 32 64,linux-${arch}) $(foreach arch,32 64,windows-${arch}), esbuild-${build}@$(ESBUILD_VERSION)) | tr " " "\n" | xargs -n 1 -P 4 npm cache add
679679
rm -rf $(FOMANTIC_WORK_DIR)/node_modules
680680
@touch .npm-cache
681681

0 commit comments

Comments
 (0)