Skip to content

Commit

Permalink
fixes call to function
Browse files Browse the repository at this point in the history
  • Loading branch information
meow464 committed Sep 26, 2021
1 parent fd33b03 commit c340081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kivy_ios/toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,7 @@ def create(self):
"{}.xcodeproj".format(args.name.lower()),
"project.pbxproj")

recipes = self.recipes_names_from_paths(args.add_custom_recipes)
recipes = self.recipes_names_from_paths(args.add_custom_recipe)

update_pbxproj(filename, pbx_frameworks=args.add_framework,
custom_recipes=recipes, custom_recipes_paths=args.add_custom_recipe)
Expand All @@ -1493,7 +1493,7 @@ def update(self):
logger.error("{} not found".format(filename))
sys.exit(1)

recipes = self.recipes_names_from_paths(args.add_custom_recipes)
recipes = self.recipes_names_from_paths(args.add_custom_recipe)

update_pbxproj(filename, pbx_frameworks=args.add_framework,
custom_recipes=recipes, custom_recipes_paths=args.add_custom_recipe)
Expand Down

0 comments on commit c340081

Please sign in to comment.