We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da09d9a commit 1e000a3Copy full SHA for 1e000a3
packages/runfiles/runfiles.ts
@@ -129,9 +129,9 @@ export class Runfiles {
129
if (!fs.existsSync(repoMappingPath)) {
130
// The repo mapping manifest only exists with Bzlmod, so it's not an
131
// error if it's missing. Since any repository name not contained in the
132
- // mapping is assumed to be already canonical, an empty map is
133
- // equivalent to not applying any mapping.
134
- return Object.create(null);
+ // mapping is assumed to be already canonical, no map is equivalent to
+ // not applying any mapping.
+ return undefined;
135
}
136
137
const repoMappings: RepoMappings = Object.create(null);
0 commit comments