mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
update
This commit is contained in:
parent
2d426ed39e
commit
0b073dc451
1 changed files with 11 additions and 1 deletions
|
|
@ -77,7 +77,17 @@ if [[ "$USE_PREBAKED_SETUP" -eq 0 ]]; then
|
|||
fi
|
||||
log "✓ Dependencies installed"
|
||||
else
|
||||
log "Skipping pnpm install (prebaked dependencies in place)"
|
||||
log "Linking dependencies from prebaked pnpm store..."
|
||||
if pnpm install --frozen-lockfile --offline; then
|
||||
log "✓ Dependencies installed (offline)"
|
||||
else
|
||||
log_error "Offline install failed, falling back to full pnpm install"
|
||||
if ! pnpm install --frozen-lockfile; then
|
||||
log_error "Failed to install dependencies even after fallback"
|
||||
exit 1
|
||||
fi
|
||||
log "✓ Dependencies installed via fallback"
|
||||
fi
|
||||
fi
|
||||
|
||||
# 5. Build only what's needed for dev (skip production Next.js build)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue