Sha256: bb6ef7d360270256f51d3916cc64e8cd59230a4145c047c48b7f99409f546d20
Contents?: true
Size: 743 Bytes
Versions: 24
Compression:
Stored size: 743 Bytes
Contents
module Fastlane module Actions class BackupFileAction < Action def self.run(params) path = params[:path] FileUtils.cp(path, "#{path}.back", {preserve: true}) UI.message("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
24 entries across 24 versions & 1 rubygems