Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
build --all fails on this.
  • Loading branch information
tkurki committed Apr 3, 2022
1 parent 609e5c6 commit 52e2f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/resources-provider-plugin/src/lib/filestorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class FileStore implements IResourceStore {
result.timestamp = stats.mtime
result.$source = this.pkg.id
return result
} catch (e: any) {
} catch (e) {
if (e.code === 'ENOENT') {
return Promise.reject(`No such resource ${type} ${itemUuid}`)
}
Expand Down

0 comments on commit 52e2f07

Please sign in to comment.