vagrant-cookbooks 0.0.1 → 0.0.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/lib/vagrant/cookbooks/version.rb +1 -1
- data/lib/vagrant/cookbooks.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: 4f056012ff1330ea0148a701a4320379b6de715f
|
|
4
|
+
data.tar.gz: f262eee91caf3adefeb545c4779345f6c5718c45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d782ca99c27a0a14277b43b78379e6d23c2b23960215aad33fbac4bae9e91f5403fb7bb390bd58f7a85106aa52c47d11b6b5051da5e28bde21a7c0fc9685f191
|
|
7
|
+
data.tar.gz: 5defe573c43cf4afb9acd31bc0e97bc7cf84f4bf90c2cd681930eb62114cd9d6ad0325cb1556c3d98f15e8e0eee7de5beb61bf4ac74bddc5b947fc0d203b37b5
|
data/lib/vagrant/cookbooks.rb
CHANGED
|
@@ -71,7 +71,7 @@ module Vagrant
|
|
|
71
71
|
env[:ui].warn "Cookbooks on branch `#{cookbooks_branch}`, skipping update"
|
|
72
72
|
else
|
|
73
73
|
env[:ui].info "Updating cookbooks"
|
|
74
|
-
system!("cd #{escape(cookbooks_path)}; git fetch origin; git rebase origin/master")
|
|
74
|
+
system!("cd #{escape(cookbooks_path)}; git fetch origin 2>&1; git rebase origin/master 2>&1")
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|