lib/cocoapods-util/command/cocoapods-extend/repo/push.rb in cocoapods-util-0.0.14 vs lib/cocoapods-util/command/cocoapods-extend/repo/push.rb in cocoapods-util-0.0.15

- old
+ new

@@ -13,10 +13,11 @@ Pod::Command::Repo::Push.options end def initialize(argv) @skip_validate = argv.flag?('skip-validate', false) + @skip_build = argv.flag?('skip-build', false) super @argvs = argv.remainder! @repo = @argvs.first end @@ -29,9 +30,10 @@ require_relative 'push_helper' @target = Pod::Command::Repo::Push.new(CLAide::ARGV.new(@argvs)) @target.validate! @target.skip_validate = @skip_validate + @target.skip_build = @skip_build @target.run end end end end \ No newline at end of file