Skip to content

Commit ea5554f

Browse files
authored
Fix "Assignment to constant variable." error
1 parent a907be7 commit ea5554f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pbxProject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ function searchPathForFile(file, proj) {
11311131
}
11321132

11331133
if (typeof file === 'string') {
1134-
const relativeFilePath = file;
1134+
let relativeFilePath = file;
11351135

11361136
if ($path.isAbsolute(file)) {
11371137
const srcRoot = $path.dirname($path.dirname(proj.filepath));

0 commit comments

Comments
 (0)