Method: Fastlane::Actions::CleanBuildArtifactsAction.details

Defined in:
fastlane/lib/fastlane/actions/clean_build_artifacts.rb

.detailsObject

[View source]

41
42
43
44
45
46
47
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 41

def self.details
  [
    "This action deletes the files that get created in your repo as a result of running the _gym_ and _sigh_ commands. It doesn't delete the `fastlane/report.xml` though, this is probably more suited for the .gitignore.",
    "",
    "Useful if you quickly want to send out a test build by dropping down to the command line and typing something like `fastlane beta`, without leaving your repo in a messy state afterwards."
  ].join("\n")
end