Skip to content

Commit

Permalink
Fix tabs in project.pbxproj of iOS template
Browse files Browse the repository at this point in the history
Summary:
Should be `tab` instead of `space`.
Closes #9317

Differential Revision: D3691795

fbshipit-source-id: 812c63d16ab56ed943949026a11dfb172de5e3ed
  • Loading branch information
jhen0409 authored and Facebook Github Bot 8 committed Aug 9, 2016
1 parent e2aa237 commit f89f09f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions local-cli/generator-ios/templates/xcodeproj/project.pbxproj
Expand Up @@ -614,11 +614,11 @@
);
INFOPLIST_FILE = "<%= name %>/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
"-ObjC",
"-lc++",
);
PRODUCT_NAME = <%= name %>;
};
name = Debug;
Expand All @@ -634,11 +634,11 @@
);
INFOPLIST_FILE = "<%= name %>/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
"-ObjC",
"-lc++",
);
PRODUCT_NAME = <%= name %>;
};
name = Release;
Expand Down

0 comments on commit f89f09f

Please sign in to comment.