mixlib-install 3.11.26 → 3.11.28

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: ec6b99d4690d5fe92eb7b63c8a6ee0866f01ba3631a9a11bfc545d71d980bb9a
4
- data.tar.gz: 9b91687c0bfc7ad8940958726e6e07a31c693b227f340324488c93c93ef6f3dd
3
+ metadata.gz: 3abbd31ee089f8f24407d866aef6e40546f12a30ba715720b155b13abcf3cc5a
4
+ data.tar.gz: bb1efeac551415d6bf1962b19b9df9335a4ad8bd673a003610400f56e8c53735
5
5
  SHA512:
6
- metadata.gz: 19f09f8899303faea32625580ca022ac759f9bb7bea83807d16d2d13ec6217d22f52bc8d6f0748ed7afd4505911819cc1c4c083f5156892377138de340af6034
7
- data.tar.gz: 3bd3541be3bc0ec57aca9b0cae11ba30c354ab8f1aeb1ebd601d015f066c205166f520c3d95d9727e025fc8db8770ec469464d586686299c4e21f04f3bcacb53
6
+ metadata.gz: 5c470a63c6325b3c81743b54453bea4a8a52124b5624786f316989599c82d53337fc5f32d9aaeeb0c1d6bd66994346bd60b20862c91bb8895c247cb24331cee3
7
+ data.tar.gz: e360d48b512a3c1cc2213fb4c28f6a5a001b1f93bb10a4399a30491eca665b09067d79fddb71a7975e3f423520353b890dcf5c403ddb6cb7298e0c44567c80e9
@@ -20,6 +20,10 @@ module Mixlib
20
20
  class Cli < Thor
21
21
  include Thor::Actions
22
22
 
23
+ def self.exit_on_failure?
24
+ true
25
+ end
26
+
23
27
  desc "version", "print mixlib-install version"
24
28
  def version
25
29
  require_relative "version"
@@ -78,6 +78,15 @@ function Get-WebContentOnFullNet {
78
78
  $wc = new-object System.Net.WebClient
79
79
  $wc.Headers.Add("user-agent", "<%= user_agent_string %>")
80
80
  $proxy.Address = $env:http_proxy
81
+ $bypassList = $env:no_proxy
82
+
83
+
84
+ if($bypassList -ne $null){
85
+
86
+ $bypassList = $bypassList.split(",")
87
+ $proxy.BypassList = $byPassList
88
+ }
89
+
81
90
  $wc.Proxy = $proxy
82
91
 
83
92
  if ([string]::IsNullOrEmpty($filepath)) {
@@ -30,6 +30,7 @@ module Mixlib
30
30
 
31
31
  SUPPORTED_ARCHITECTURES = %w{
32
32
  aarch64
33
+ arm64
33
34
  armv7l
34
35
  i386
35
36
  powerpc
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class Install
3
- VERSION = "3.11.26"
3
+ VERSION = "3.11.28"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixlib-install
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.26
4
+ version: 3.11.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thom May
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-12-30 00:00:00.000000000 Z
12
+ date: 2020-03-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mixlib-shellout