appbundle-updater 0.2.9 → 0.2.10

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: 3c6ecf6d89cd8801d06690769f8f46892fad91b8
4
- data.tar.gz: 8c8303a2f0b9bf6f18c60849b7494a950e1d8480
3
+ metadata.gz: 8c305238e09ea5087cb50f25cd6d512951a6a7ca
4
+ data.tar.gz: 525815c7435a38bc24536fc31b942b50d6280202
5
5
  SHA512:
6
- metadata.gz: 6149ec7b63073ce9e9503563228c8e167720253a437c7792611b231c19218f313a8ef7b02c577de4733991936c27b83ef8d233ca43a05032eddefa3475005460
7
- data.tar.gz: 39904219eb570316377c42c1d97f4e1172b63e5a4648e142a95517cb87e56c6821eec01f16118062570b12776430cf399e864d17cc5926b3711224668b078462
6
+ metadata.gz: ac04808fd5a9982dbc674ecfda207b6e80ed7ad48d888d495caaf7fefc71538064c9131f69f1f61593cd323f6aed1bdd0701fac20d21b01425c7fcdb8d3f3666
7
+ data.tar.gz: 1e23ce09ad51e6f7a0e0690c1c30cf14c69425e3cd0e744278a67845aa54d9da226f1eadde31ae848f0504cb194132bb36549abb2830899badeb956e9a7be8ef
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.2.9](https://github.com/chef/appbundle-updater/tree/v0.2.9) (2016-01-19)
4
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.8...v0.2.9)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - fix gcc/build-essential install to not prompt [\#13](https://github.com/chef/appbundle-updater/pull/13) ([lamont-granquist](https://github.com/lamont-granquist))
9
+
3
10
  ## [v0.2.8](https://github.com/chef/appbundle-updater/tree/v0.2.8) (2016-01-19)
4
11
  [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...v0.2.8)
5
12
 
@@ -65,6 +65,7 @@ def install_package_dependencies
65
65
  case `ohai platform_family`
66
66
  when /debian/
67
67
  ENV["DEBIAN_FRONTEND"] = "noninteractive"
68
+ run("apt-get -y update")
68
69
  run("apt-get -q -y install build-essential git")
69
70
  when /fedora/, /rhel/
70
71
  run("yum -y install gcc make git")
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.2.9"
2
+ VERSION = "0.2.10"
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.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist