Sha256: 901d01e76ccf414f79f576b67457168534b6ab5c2f0754eb69b00cce7d5c6d01
Contents?: true
Size: 747 Bytes
Versions: 69
Compression:
Stored size: 747 Bytes
Contents
module Fastlane module Actions class BackupFileAction < Action def self.run(params) path = params[:path] FileUtils.cp(path, "#{path}.back", {preserve: true}) Helper.log.info "Successfully created a backup 💾" end def self.description 'This action backs up your file to "[path].back"' end def self.is_supported?(platform) true end def self.author "gin0606" end def self.available_options [ FastlaneCore::ConfigItem.new(key: :path, description: "Path to the file you want to backup", optional: false) ] end end end end
Version data entries
69 entries across 69 versions & 1 rubygems