recap 1.2.0 → 1.2.1
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/recap/support/capistrano_extensions.rb +1 -1
- data/lib/recap/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: 6606826af353db87e4cb782732a19207ce156869
|
4
|
+
data.tar.gz: ccab176fe7120b06b759832ebc051dd209b7d280
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22297c0c8dcdefccb845c8a3aedf4883b61dc6153e0fc7d192fad377f68971b9cba1bdd81bd73500c297ad26b916c72f44445357503de95424414b14f3ba8f5c
|
7
|
+
data.tar.gz: 161eac0c9fbf088129e75a656becbe9106df4c8491a238b4ad3dbbc7218b32526e11274ed84758a437c2bcdcd00b9eafe043430eb8dda16f946daf4043a1ae0d
|
@@ -92,7 +92,7 @@ module Recap::Support::CapistranoExtensions
|
|
92
92
|
sudo "[ ! -e #{deploy_lock_file} ] && echo '#{message}' > #{deploy_lock_file}"
|
93
93
|
rescue Exception => e
|
94
94
|
abort %{
|
95
|
-
Failed to claim lock:
|
95
|
+
Failed to claim lock: #{capture("cat #{deploy_lock_file}")}
|
96
96
|
|
97
97
|
If you think this lock no longer applies, clear it using the `deploy:unlock` task
|
98
98
|
and try again.
|
data/lib/recap/version.rb
CHANGED