Browse Source

fix[build-local-docker-image.sh]: pnpm i -> pnpm bootstrap. (#9070)

pull/9074/head
Vanilla 4 months ago committed by GitHub
parent
commit
e643f601e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      build-local-docker-image.sh

2
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() {

Loading…
Cancel
Save