appbundle-updater 0.2.1 → 0.2.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 +4 -4
- data/CHANGELOG.md +9 -2
- data/bin/appbundle-updater +1 -1
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5890c1c5cd9b4cec6094ab1bd3ecaf17e9c5d8e4
|
|
4
|
+
data.tar.gz: 99409df42e6b1967180fcefa47c377485cc64826
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75fddef196538706740fe4a70851dd6acbe71d12201e0047d487c492ad4eefa13c975a4c62ad7969e4862885aef1c78f363c81dda374f16fba25c4fd837a5958
|
|
7
|
+
data.tar.gz: 682e150d1d33c6a9973bab2f6e253b63fb6fce498f9a0d90ee36835f62f22f5bd33dc1fa7e03065672ba5bc3db07ebe8975619c1fa09b941c2ae7b7d560beada
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
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
|
-
|
|
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))
|
data/bin/appbundle-updater
CHANGED
|
@@ -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
|