class CleanProjectCommand

Public Instance Methods

execute() click to toggle source
# File lib/command/clean_project_command.rb, line 2
def execute
    system "swift package clean && rm -rf .build && rm Package.resolved &> /dev/null"
    puts "All things cleaned! Now to the good stuff..."
end