clean_proj
Clean build products from an Xcode project using xcodebuild. Specify the project path; optionally include scheme, configuration, or derived data path for targeted cleaning.
Instructions
Cleans build products for a specific project file using xcodebuild. IMPORTANT: Requires projectPath. Scheme/Configuration are optional. Example: clean_proj({ projectPath: '/path/to/MyProject.xcodeproj', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Optional: Build configuration to clean (Debug, Release, etc.) | |
derivedDataPath | No | Optional: Path where derived data might be located | |
extraArgs | No | Additional xcodebuild arguments | |
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | No | Optional: The scheme to clean |