fastlane-plugin-scipio 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a880fd6039508f339c755e735564ca07bc1d3a7dddb79761deca29d46a8711ce
4
- data.tar.gz: b464062b1c3d579d0ea3247ee30e75064b7a0240c668eab32c4c7bc711e2519a
3
+ metadata.gz: 5dee4fb1c837ada3cd10d788afe772d0b17d87269f8d292748989f768b5c8d7e
4
+ data.tar.gz: a70619e19120a84f4b541518b61df0c3876530553b55c95f8fec6498648f9676
5
5
  SHA512:
6
- metadata.gz: fa99f8c82ed4741e772b4c27091df7c58a8cd479e36025e2a9697f525d455f462fd126f48e4dc46acae4cf95847145b3648917f1c739737b3f7477dc7145bb52
7
- data.tar.gz: b541181dca35c1d29faabd9d2df8dc0b73cb0f274c1ebfcbadc6830a87d1e140c0064e66a37aa4b0944b7f5c38c3dd7dcb879eb29247e4d5238adfdede5fb314
6
+ metadata.gz: 40351d7b6ff11e2bc6494663e78bf75766b4ea5b25584da8c090fa36c277aa6b45efe54538c35ccc3baa1db4986d6e05462faa44964e7cd3e19c8c4da703e38a
7
+ data.tar.gz: d14ef7a15f38f769be7d0fb8e15b1d54441ade08ce8cd9b18d2d1415ec287420d51e786e80427e6b97e136ae45af6a8788416568712a7b02c255f396fdfeff44
@@ -22,7 +22,7 @@ module Fastlane
22
22
  cmd << "--force" if params[:force] == true
23
23
  cmd << "--force-upload" if params[:force_upload] == true
24
24
  cmd << "--force-build" if params[:force_build] == true
25
- cmd << "--platform #{params[:platform].join(",")}"
25
+ cmd << "--platform #{params[:platform].join(",")}" if params[:platform]
26
26
  cmd << "--verbose " if params[:verbose]
27
27
 
28
28
  if (command_name == "build" || command_name == "upload") && params[:packages].count > 0
@@ -84,8 +84,7 @@ module Fastlane
84
84
  description: "Comma separated list of platforms to build",
85
85
  is_string: false,
86
86
  optional: true,
87
- type: Array,
88
- default_value: ["ios"]),
87
+ type: Array),
89
88
  FastlaneCore::ConfigItem.new(key: :skip_clean,
90
89
  env_name: "FL_SCIPIO_SKIP_CLEAN",
91
90
  description: "Skips cleaning the build directory",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Scipio
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-scipio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - evandcoleman