appbundle-updater 0.2.1 → 0.2.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
  SHA1:
3
- metadata.gz: 906fa33ad1812dfa3548e346e6db79abf8b53033
4
- data.tar.gz: 2e5665f463d4ead3b49459edc054c76d73de36f8
3
+ metadata.gz: 5890c1c5cd9b4cec6094ab1bd3ecaf17e9c5d8e4
4
+ data.tar.gz: 99409df42e6b1967180fcefa47c377485cc64826
5
5
  SHA512:
6
- metadata.gz: 40e707b246d850dea44f5b2778442da3d8897b5596ba8b9c4023394d9d19f463b1dad749872bc1e81c096839cc3f1c4cec701d3e61e0258cdaa47a09e2e4fd90
7
- data.tar.gz: 42f81f63d89ab4d4721c3a51e549c062cafee8cb5bc8b5af54ca52724e02d157cf5f14d80a1bfe0473df83aadc1c25d8609d1a703bb17721de39c5ee41ca0fb1
6
+ metadata.gz: 75fddef196538706740fe4a70851dd6acbe71d12201e0047d487c492ad4eefa13c975a4c62ad7969e4862885aef1c78f363c81dda374f16fba25c4fd837a5958
7
+ data.tar.gz: 682e150d1d33c6a9973bab2f6e253b63fb6fce498f9a0d90ee36835f62f22f5bd33dc1fa7e03065672ba5bc3db07ebe8975619c1fa09b941c2ae7b7d560beada
@@ -1,11 +1,18 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/chef/appbundle-updater/tree/HEAD)
3
+ ## [v0.2.1](https://github.com/chef/appbundle-updater/tree/v0.2.1) (2015-09-25)
4
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.0...v0.2.1)
4
5
 
5
- [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.1.0...HEAD)
6
+ **Merged pull requests:**
7
+
8
+ - fix obvious bug in PATH on windows [\#6](https://github.com/chef/appbundle-updater/pull/6) ([lamont-granquist](https://github.com/lamont-granquist))
9
+
10
+ ## [v0.2.0](https://github.com/chef/appbundle-updater/tree/v0.2.0) (2015-09-25)
11
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.1.0...v0.2.0)
6
12
 
7
13
  **Merged pull requests:**
8
14
 
15
+ - add changelog, move dev gems Gemfile [\#5](https://github.com/chef/appbundle-updater/pull/5) ([lamont-granquist](https://github.com/lamont-granquist))
9
16
  - add --github option for pulling forks [\#4](https://github.com/chef/appbundle-updater/pull/4) ([lamont-granquist](https://github.com/lamont-granquist))
10
17
  - Suppress command output for successful commands [\#3](https://github.com/chef/appbundle-updater/pull/3) ([lamont-granquist](https://github.com/lamont-granquist))
11
18
  - introduce --tarball option, default back to git clone [\#2](https://github.com/chef/appbundle-updater/pull/2) ([lamont-granquist](https://github.com/lamont-granquist))
@@ -214,7 +214,7 @@ class Updater
214
214
 
215
215
  def run(cmd)
216
216
  ENV_KEYS.each { |key| ENV["_YOLO_#{key}"] = ENV[key]; ENV.delete(key) }
217
- ENV['PATH'] = bin_dir + File::PATH_SEPARATOR + ENV['_YOLO_PATH']
217
+ ENV['PATH'] = bin_dir.to_s + File::PATH_SEPARATOR + ENV['_YOLO_PATH']
218
218
  puts " running: #{cmd}"
219
219
  output = `#{cmd} 2>&1` #FIXME: bash/zsh-ism, will not work on csh
220
220
  unless $?.exited? && $?.exitstatus == 0
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist