Skip to content

Commit

Permalink
fix(ios): convert function to use arrow function (#11493)
Browse files Browse the repository at this point in the history
Fixes TIMOB-27768
  • Loading branch information
ssjsamir committed Apr 3, 2020
1 parent eb44b79 commit fa3ba4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3433,7 +3433,7 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject(next) {
const handledBuildPhases = [ 'PBXSourcesBuildPhase', 'PBXFrameworksBuildPhase', 'PBXResourcesBuildPhase', 'PBXCopyFilesBuildPhase' ];

// add the build phases
xobjs.PBXNativeTarget[targetUuid].buildPhases.forEach(function (phase) {
xobjs.PBXNativeTarget[targetUuid].buildPhases.forEach(phase => {
let type;

for (const handledBuildPhase of handledBuildPhases) {
Expand Down

0 comments on commit fa3ba4b

Please sign in to comment.