Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cli/src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class LocalLoader implements CannonLoader {
}

getLabel(): string {
return this.dir;
return 'local blobs';
}

read(url: string): Promise<any> {
Expand Down Expand Up @@ -94,7 +94,7 @@ export class CliLoader implements CannonLoader {
case LoaderAction.read:
return this.readIpfs ? this.readIpfs.getLabel() : this.repo.getLabel();
case LoaderAction.local:
return this.dir;
return 'local cache';
case LoaderAction.write:
return this.writeIpfs ? this.writeIpfs.getLabel() : '';
case LoaderAction.repo:
Expand Down
Loading