vagrant-capistrano-push 0.0.12 → 0.0.13
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-capistrano-push/push.rb +2 -2
- data/lib/vagrant-capistrano-push/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: ba288fd82efad0c3f49245383d7dfee3abc59ba6
|
|
4
|
+
data.tar.gz: 4c05add85f10b493760b79185ca78db6d1cba671
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c27cfb9363ee022d6fb31de67b395ae9996ddf12f8ebac887a6ba970ae32134af59636ca035c24abd0e90f1f67bf73bb6d44036cfe1881b843296446b4a9e9f8
|
|
7
|
+
data.tar.gz: 935f35967747a1a262df5f60a85d643941a0f51ae453ca883555493f7ec4a3c0c299647c650d3be877a8ac92549809549b4d08bc0df40adbe308c38db2612196
|
|
@@ -9,7 +9,7 @@ module VagrantPlugins
|
|
|
9
9
|
# Capistrano is not part of the current Vagrant bundle, so it needs to run
|
|
10
10
|
# in the context of the system.
|
|
11
11
|
Vagrant::Util::Env.with_clean_env do
|
|
12
|
-
result = Vagrant::Util::
|
|
12
|
+
result = Vagrant::Util::Subprocess.execute(
|
|
13
13
|
'bash',
|
|
14
14
|
'-c',
|
|
15
15
|
config.inline,
|
|
@@ -25,7 +25,7 @@ module VagrantPlugins
|
|
|
25
25
|
stderr: result.stderr
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
-
result
|
|
28
|
+
result.stdout
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
end
|