lib/gonative/commands/ios/publish.rb in gonative-cli-0.7.9 vs lib/gonative/commands/ios/publish.rb in gonative-cli-0.7.10
- old
+ new
@@ -5,13 +5,14 @@
module IOS
class Publish < Base
desc 'Verify, build and release a new version'
argument :name, required: true, desc: 'Name of the plugin'
option :skip_build, type: :boolean, default: false
+ option :debug, type: :boolean, default: false
def call(name:, skip_build:, **)
Plugins::IOS::Verify.call
- Plugins::IOS::BuildFramework.call(name) unless skip_build
+ Plugins::IOS::BuildFramework.call(name, debug) unless skip_build
Plugins::IOS::Release.call
end
end
end
end