Skip to content

Commit

Permalink
ensure we show the locking message
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Jun 16, 2023
1 parent 63525d5 commit 6648079
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/prefab/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ class MultiLogger implements InstallLogger {
this.update()
}

locking(_pkg: Package): void {}
locking(pkg: Package): void {
if (!this.total_progress()) {
const { teal } = useLogger()
this.logger.replace(`${teal("locking")} ${utils.pkg.str(pkg)}`) //TODO
}
}
unlocking(_pkg: Package): void {}

installed(installation: Installation): void {
Expand Down

0 comments on commit 6648079

Please sign in to comment.