fastlane-plugin-xamarin 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45ee146f69d5909ed5b2235b5dcb8993f13eddbfe5db42f9a5031a929de134bd
4
- data.tar.gz: a89322e3293bbd05d2c7d48d00037395e12ab6e475bf268deb60fbb2423814ae
3
+ metadata.gz: ff206c3f335d82a768581b77abb6a1f67d7fe549474c33fc79d1517644a0834b
4
+ data.tar.gz: ba2583a6c2cc8334ee131f92269a1449982822461205e1bdc371ed673e2ac45c
5
5
  SHA512:
6
- metadata.gz: 19e672fb0fdbc6fcd313a1524ca7939330b25ce599928955d60d95b55d76557f7f18f7d6ab3c8f9c70a6c9d94361a229f606990c841ea95259d92da2ae6745b3
7
- data.tar.gz: f0afdc69b42940f1c161d2cc6c14a0be3bff9000aae868a43d5b97101651d5040a9f35cb461a64a5871b52e8c158bc1cf4dff12329d70327db67defa3f76591a
6
+ metadata.gz: 90164654640f646b39471093065ec1df948a02d566d9f7b9bdf4308f86ab7f554138ee874c0d09c9a338eea61896a2a8ef08c3503cfa8772e0c3438fca86a018
7
+ data.tar.gz: 601d43f64c137181d4fe0ea23e84db2333cc7d9ee1d31968caa190406f2302503730bee4f6cad23c735335a2348e9160e69160432990defe5bee11d66d1dddb9
@@ -30,6 +30,8 @@ module Fastlane
30
30
  else
31
31
  command.push("normal")
32
32
  end
33
+ command.push("-NonInteractive")
34
+
33
35
 
34
36
  exit_status = 0
35
37
  result = FastlaneCore::CommandExecutor.execute(command: command,
@@ -70,13 +72,13 @@ module Fastlane
70
72
  FastlaneCore::ConfigItem.new(key: :config_file_path,
71
73
  env_name: "NUGET_CONFIGFILEPATH",
72
74
  description: "Identifies the packages.config file that lists the packages to install",
73
- optional: false,
75
+ optional: true,
74
76
  type: String),
75
77
 
76
78
  FastlaneCore::ConfigItem.new(key: :package_id,
77
79
  env_name: "NUGET_PACKAGEID",
78
80
  description: "The package to install (using the latest version)",
79
- optional: false,
81
+ optional: true,
80
82
  type: String),
81
83
 
82
84
  FastlaneCore::ConfigItem.new(key: :nuget,
@@ -23,6 +23,7 @@ module Fastlane
23
23
  command.push(nuget)
24
24
  command.push("restore")
25
25
  command.push(params[:project_path])
26
+ command.push("-NonInteractive")
26
27
 
27
28
  exit_status = 0
28
29
  result = FastlaneCore::CommandExecutor.execute(command: command,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Xamarin
3
- VERSION = "0.6.1"
3
+ VERSION = "0.6.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-xamarin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Charriere