Skip to content

Commit

Permalink
Fix incorrect Pods Cache function naming
Browse files Browse the repository at this point in the history
I missed these when renaming the functions earlier for #51
  • Loading branch information
mikehardy committed Mar 29, 2021
1 parent 90a14f6 commit e04ad59
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 e04ad59

Please sign in to comment.