capistrano-rsync-bladrak 1.4.1 → 1.4.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/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: 0a6e713fc3d428c297a91fc4fb46e521a7a673ed
|
|
4
|
+
data.tar.gz: 1ae1783225418568957703a2b502a6582e267139
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a209e21cd61885e8b2e7227e5de39d1b7136f010f4d7ba3748cfa1a3b7858a360e9d3be1c2a098c5bc459d66e5f87d8dd43b1b24f508e91c4cc8ba89dad49bf
|
|
7
|
+
data.tar.gz: 2bddb8f80ad72c551db971741774b79c6fc1a8f3bfb2e6690734d09a4d773cf6542123273a7aff59271108e90c6ed6ec560d7c01fe6a0568765d570409e4ac4f
|
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
|
|
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
|
|
186
|
+
next if fetch(:bypass_git_clone)
|
|
187
187
|
|
|
188
188
|
run_locally do
|
|
189
189
|
within fetch(:rsync_stage) do
|