raykit 0.0.393 → 0.0.394
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 +2 -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: 423f13972fb0cca803412014494c77e7a1796f66b66e9435bc7d95c5299739e0
|
4
|
+
data.tar.gz: bf009bd3b3428cc478f45e6e11427fefa4b48b8e6a8cdecd567564a8dbfb59b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29ec3ee454b9787bcc02cf4421409256704fe1f3d8310d77f5a1ac2fd2e636ae426f2d7276aa9f92cf0d74fa3a54eff2e1323d2f2bb03d3d3b0800c1e45f11a0
|
7
|
+
data.tar.gz: 9ee193a50f8d5bbc7841eb09f64f2f92d121a6f49a63eb42bdfaf30faa4e1cf90911f6f682d1c5aca08566d5404f1cddbeee09274ca6da6cdec07b6093a7b9c9
|
@@ -145,9 +145,9 @@ module Raykit
|
|
145
145
|
run("git clone #{url} #{make_dir}")
|
146
146
|
cmd = 0
|
147
147
|
Dir.chdir(make_dir) do
|
148
|
-
#run("git tag").details
|
149
148
|
run("git reset --hard #{commit_id}")
|
150
|
-
|
149
|
+
FileUtils.rm_rf(".git")
|
150
|
+
cmd = run(command)
|
151
151
|
end
|
152
152
|
FileUtils.rm_rf(make_dir) if (cmd.exitstatus == 0)
|
153
153
|
cmd
|