Sha256: 2757896082db38fb265eb73aecc1a4f8843c8030c53f21e766ea9c44f59f4e83
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 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 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, is_string: false, 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.category :source_control end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | fastlane/lib/fastlane/actions/git_submodule_update.rb |
fastlane_hotfix-2.165.0 | fastlane/lib/fastlane/actions/git_submodule_update.rb |