Skip to content

Commit

Permalink
Update helper.js
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSousa committed Mar 8, 2021
1 parent 370b94f commit 7e4d99d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scripts/ios/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ module.exports = {
* @returns The path to the XCode project's .pbxproj file.
*/
getXcodeProjectPath: function (context) {

var appName = utilities.getAppName(context);

return path.join("platforms", "ios", appName + ".xcodeproj", "project.pbxproj");
},

Expand All @@ -29,8 +27,6 @@ module.exports = {
* (dSYMs) so that Crashlytics can display stack trace information in it's web console.
*/
addShellScriptBuildPhase: function (context, xcodeProjectPath) {
console.log('here1');

let xcode;
if (cmpVersions(context.opts.cordova.version, '8.0.0') < 0) {
xcode = context.requireCordovaModule("xcode");
Expand Down Expand Up @@ -92,8 +88,6 @@ module.exports = {
* by the addShellScriptBuildPhase() helper method.
*/
removeShellScriptBuildPhase: function (context, xcodeProjectPath) {
console.log('here2');

let xcode;
if (cmpVersions(context.opts.cordova.version, '8.0.0') < 0) {
xcode = context.requireCordovaModule("xcode");
Expand Down

0 comments on commit 7e4d99d

Please sign in to comment.