Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): add support for 'pod install' in VM based environments #5144

Merged
merged 13 commits into from
Oct 27, 2021
Prev Previous commit
Next Next commit
lint
thomasvidas committed Oct 26, 2021
commit ce6097819a422720dd711cd68f0c92806019f1fa
7 changes: 4 additions & 3 deletions cli/src/ios/update.ts
Original file line number Diff line number Diff line change
@@ -33,11 +33,10 @@ import type { Plugin } from '../plugin';
import { copy as copyTask } from '../tasks/copy';
import { convertToUnixPath } from '../util/fs';
import { resolveNode } from '../util/node';
import { runCommand } from '../util/subprocess';
import { runCommand, isInstalled } from '../util/subprocess';
import { extractTemplate } from '../util/template';

import { getIOSPlugins } from './common';
import { isInstalled } from '../util/subprocess';

const platform = 'ios';

@@ -131,7 +130,9 @@ async function updatePodfile(
},
);
} else {
logger.warn('Unable to find "xcodebuild". Skipping xcodebuild clean step...');
logger.warn(
'Unable to find "xcodebuild". Skipping xcodebuild clean step...',
);
}
}