File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export class Runfiles {
168
168
// If the repository mappings were loaded ensure the source repository is valid.
169
169
if ( ! ( sourceRepo in this . repoMappings ) ) {
170
170
throw new Error (
171
- `source repository ${ sourceRepo } not found in repo mappings: ${ JSON . stringify (
171
+ `source repository " ${ sourceRepo } " not found in repo mappings: ${ JSON . stringify (
172
172
this . repoMappings ,
173
173
null ,
174
174
2 ,
@@ -181,7 +181,7 @@ export class Runfiles {
181
181
if ( result ) {
182
182
return result ;
183
183
}
184
- const e = new Error ( `could not resolve module ${ modulePath } ` ) ;
184
+ const e = new Error ( `could not resolve module " ${ modulePath } " from repository " ${ sourceRepo } " ` ) ;
185
185
( e as any ) . code = 'MODULE_NOT_FOUND' ;
186
186
throw e ;
187
187
}
You can’t perform that action at this time.
0 commit comments