Skip to content

Commit 18fb390

Browse files
FatmeKristian D. Dimitrov
authored and
Kristian D. Dimitrov
committed
Fix "Assignment to constant variable." error
1 parent c947e41 commit 18fb390

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
@@ -1721,7 +1721,7 @@ function searchPathForFile(file, proj) {
17211721
}
17221722

17231723
if (typeof file === 'string') {
1724-
const relativeFilePath = file;
1724+
let relativeFilePath = file;
17251725

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

0 commit comments

Comments
 (0)