go-deploy 1.0.8 → 1.0.9
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/go_deploy/deploy.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 164c7c3e76657c13d578836798d1b8944ce55f78979abef7393b2e5e9fad26dd
|
|
4
|
+
data.tar.gz: 8aa43a6a949e544c81374757a05fb185333f38224db8842529a5bd402b518ba9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8077e33439b272e656c9c198ee14d44199f50285a5b174b1fd8a20dc5e9e55876cf90dabefe70bfa68566c2e97652be5020b82864b99bf41a757f6aed936e426
|
|
7
|
+
data.tar.gz: 751c276c7620c7412dc835fcdedfea68d119548502755c0997e6ed6089460700c85786a8d250b7d86dc8db6c2ba74883dd97ba3a63ff6fe780477ea57f23197c
|
data/lib/go_deploy/deploy.rb
CHANGED
|
@@ -113,7 +113,7 @@ module GoDeploy
|
|
|
113
113
|
|
|
114
114
|
def git_update
|
|
115
115
|
puts 'Step 4 git:clone'.green
|
|
116
|
-
@console.exec(ssh: ssh, command: "cd #{@deploy_to}/repo && git remote set-url origin #{git_repo_url}")
|
|
116
|
+
@console.exec(ssh: ssh, command: "cd #{@deploy_to}/repo && git remote set-url origin #{@git_repo_url}")
|
|
117
117
|
@console.exec(ssh: ssh, command: "cd #{@deploy_to}/repo && git remote update --prune")
|
|
118
118
|
end
|
|
119
119
|
|