Skip to content

Commit

Permalink
Fixed a bad call
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Mar 30, 2017
1 parent f8f7954 commit 2c9f6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/react_native_xcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub fn execute<'a>(matches: &ArgMatches<'a>, config: &Config) -> Result<()> {
}

info!("Parsing Info.plist");
let plist = match xcode::InfoPlist::discover_from_env(&base)? {
let plist = match xcode::InfoPlist::discover_from_env()? {
Some(plist) => plist,
None => { return Err("Could not find info.plist".into()); }
};
Expand Down

0 comments on commit 2c9f6d2

Please sign in to comment.