Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoryvp committed Aug 14, 2016
1 parent d8f078c commit 6334c74
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/rnpm-postlink.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ function xcodeprojFix(filepath) {
// name = VoxImplantTests;
case 'name-reference':
if (lastReferencedConfigListId) {
nameForConfigList[lastReferencedConfigListId] = result.name;
// Not some other 'name =' after we already remembered target's?
if (!nameForConfigList[lastReferencedConfigListId]) {
nameForConfigList[lastReferencedConfigListId] = result.name;
}
}
break
// PRODUCT_NAME = VoxImplantTests;
Expand Down

0 comments on commit 6334c74

Please sign in to comment.