Sha256: 8a576cc6089e44a87c3f16ffdfdfae16f8ab4ad7cdc5cdd2bb4a7a03c152c6ab
Contents?: true
Size: 1.64 KB
Versions: 72
Compression:
Stored size: 1.64 KB
Contents
module Fastlane module Actions class GitSubmoduleUpdateAction < Action def self.run(params) commands = ["git submodule update"] commands += ["--init"] if params[:init] commands += ["--recursive"] if params[:recursive] Actions.sh(commands.join(' ')) end ##################################################### # @!group Documentation ##################################################### def self.description "Executes a git submodule update command" end def self.available_options [ FastlaneCore::ConfigItem.new(key: :recursive, description: "Should the submodules be updated recursively?", type: Boolean, default_value: false), FastlaneCore::ConfigItem.new(key: :init, description: "Should the submodules be initiated before update?", type: Boolean, default_value: false) ] end def self.output end def self.return_value end def self.authors ["braunico"] end def self.is_supported?(platform) return true end def self.example_code [ 'git_submodule_update', 'git_submodule_update(recursive: true)', 'git_submodule_update(init: true)', 'git_submodule_update(recursive: true, init: true)' ] end def self.category :source_control end end end end
Version data entries
72 entries across 72 versions & 4 rubygems