Skip to content

Commit

Permalink
Merge pull request #52 from mikehardy/more-pods-cleanup
Browse files Browse the repository at this point in the history
Fix incorrect Pods Cache function naming
  • Loading branch information
pmadruga authored Mar 30, 2021
2 parents 90a14f6 + e04ad59 commit e38dba9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const { tasks } = require('./internals/tasks');
options
.askiOS()
.then(options.askiOSPods)
.then(options.askSystemPodsCache)
.then(options.askUserPodsCache)
.then(options.askSystemiOSPodsCache)
.then(options.askUseriOSPodsCache)
.then(options.askUpdatePods)
.then(options.askAndroid)
.then(options.askAndroidCleanProject)
Expand All @@ -21,11 +21,11 @@ options
if (options.getWipeiOSPods()) {
executeTask(tasks.wipeiOSPodsFolder);
}
if (options.getWipeSystemPodsCache()) {
executeTask(tasks.wipeSystemPodsCache);
if (options.getWipeSystemiOSPodsCache()) {
executeTask(tasks.wipeSystemiOSPodsCache);
}
if (options.getWipeUserPodsCache()) {
executeTask(tasks.wipeUserPodsCache);
if (options.getWipeUseriOSPodsCache()) {
executeTask(tasks.wipeUseriOSPodsCache);
}
if (options.getWipeAndroidBuild()) {
executeTask(tasks.wipeAndroidBuildFolder);
Expand Down

0 comments on commit e38dba9

Please sign in to comment.