From 5a385a1be936337bee75488c610b44f5e6220092 Mon Sep 17 00:00:00 2001 From: plouc Date: Sat, 13 May 2023 18:12:04 +0900 Subject: [PATCH] fix(deploy): debugging vercel build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 822e58fbe..fcd51441f 100644 --- a/Makefile +++ b/Makefile @@ -87,8 +87,8 @@ test: ##@0 global run all checks/tests (packages, website) .PHONY: vercel-build vercel-build: ##@0 global Build the website and storybook to vercel - @$(MAKE) website-build - @$(MAKE) storybook-build + $(MAKE) website-build + $(MAKE) storybook-build @cp -a storybook/storybook-static website/public/storybook .PHONY: clean-all