stripe-ios/ci_scripts/delete_project_files.rb

10 lines
382 B
Ruby
Executable File

#!/usr/bin/env ruby
require_relative 'common'
run_command('rm -f .package.resolved', false)
run_command('rm -rf Stripe.xcworkspace', false)
run_command('find Stripe* -type d -name "*.xcodeproj" -exec rm -r {} +', false)
run_command('find Example -type d -name "*.xcodeproj" -exec rm -r {} +', false)
run_command('find Testers -type d -name "*.xcodeproj" -exec rm -r {} +', false)