capistrano-rsync-bladrak 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/capistrano/rsync.rb +2 -2
- data/lib/capistrano/rsync/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: d245dc6c5452cbdd4136d991a043335d36343336
|
4
|
+
data.tar.gz: 5a702b16d8d1e32ed4f293030684cecbfcd85837
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0934e2dc168480eb51f37be496de0633cf69a57025e64324846b70ea6710b635b83f427fd3f27437d0a18eeb425bd046600d173e90a94caadb6a7c93ab1b281d
|
7
|
+
data.tar.gz: aa6e98409dc48438888020365337d9c77a392e63d6236dc347823d734204df47cd509d144c92ad7c4c905f711f38890af015d88cbc23aeda872b49d7b4234b18
|
data/lib/capistrano/rsync.rb
CHANGED
@@ -144,7 +144,7 @@ namespace :rsync do
|
|
144
144
|
task :create_stage do
|
145
145
|
next if File.directory?(fetch(:rsync_stage))
|
146
146
|
next if !has_roles?
|
147
|
-
next if !bypass_git_clone
|
147
|
+
next if !fetch(:bypass_git_clone)
|
148
148
|
|
149
149
|
if fetch(:rsync_sparse_checkout, []).any?
|
150
150
|
run_locally do
|
@@ -183,7 +183,7 @@ namespace :rsync do
|
|
183
183
|
desc "Stage the repository in a local directory."
|
184
184
|
task :stage => %w[create_stage] do
|
185
185
|
next if !has_roles?
|
186
|
-
next if !bypass_git_clone
|
186
|
+
next if !fetch(:bypass_git_clone)
|
187
187
|
|
188
188
|
run_locally do
|
189
189
|
within fetch(:rsync_stage) do
|