From e643f601e4a0662a9d90bc384e7fc77e76ac1ee8 Mon Sep 17 00:00:00 2001 From: Vanilla Date: Thu, 25 Jul 2024 20:23:16 +0800 Subject: [PATCH] fix[build-local-docker-image.sh]: pnpm i -> pnpm bootstrap. (#9070) --- build-local-docker-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-local-docker-image.sh b/build-local-docker-image.sh index 25371e59ae..b269185f9e 100755 --- a/build-local-docker-image.sh +++ b/build-local-docker-image.sh @@ -26,7 +26,7 @@ function remove_image() { function install_dependencies() { # Install all dependencies cd ${SCRIPT_DIR} - pnpm i || ERROR="install_dependencies failed" + pnpm bootstrap || ERROR="install_dependencies failed" } function build_gui() {