raykit 0.0.425 → 0.0.426
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/raykit/git/repository.rb +5 -2
- 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: b63f84f49ffb7b8bc5464db8d057bd80ba63edb086524c930f6b6a4f8fd750ef
|
4
|
+
data.tar.gz: 8ef1d462d03e4f93ffa991488b6ec215a19be2d2b2b928bc87093a10c0a6ae45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b9a34de23a7c8b41e3d2a86faa6d901ed4af906c8b54b429d994f96aa9a2e534819e74336f1193761e94c4a4228890f08cf84b0ada3b74d8da971869ba63070
|
7
|
+
data.tar.gz: 3999d8f4a3512d99e5ab68ee42d9cc9397e6519ed32b11bd37e7f9c846e780b999087075bcbd226a4c28a039a9bce6da01a5481cbc772f99b774a15aa5512aa1
|
@@ -97,7 +97,7 @@ module Raykit
|
|
97
97
|
clone_dir = "#{Environment.get_dev_dir("clone")}/#{relative_path}"
|
98
98
|
end
|
99
99
|
|
100
|
-
|
100
|
+
public def update_local_clone_directory
|
101
101
|
if Dir.exist?(local_clone_directory)
|
102
102
|
Dir.chdir(local_clone_directory) do
|
103
103
|
Raykit::Command.new("git pull")
|
@@ -146,7 +146,10 @@ module Raykit
|
|
146
146
|
repo.clone(work_dir) if !Dir.exist?(work_dir)
|
147
147
|
Dir.chdir(work_dir) do
|
148
148
|
run("git pull")
|
149
|
-
run(cmd)
|
149
|
+
#run(cmd)
|
150
|
+
cmd = Raykit::Command.new(cmd)
|
151
|
+
cmd = cmd.run().summary().details_on_failure
|
152
|
+
cmd
|
150
153
|
end
|
151
154
|
end
|
152
155
|
|