dev 2.0.91 → 2.0.92
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/dev_commands.rb +4 -4
- 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: 789a6956ec4a2f83dfd14edd2f5338183338b0b7
|
4
|
+
data.tar.gz: 91467246317f06ccb83e445ae3ae8fd0d2a75680
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abea74371ece330b26484b81e80906106a97a663eb16accf0e7c9c7533a0e813edb4e68aa1569f493b00dda0833f2fc528ca8c4e502455d5e10a6cd05c27ae9a
|
7
|
+
data.tar.gz: 66757ce7fd7b02bf59737b22e56fb6fabd454529762f047e5b730e3eaebebe1e10a5cc2755f62fe8e9a8eb65bdfd24fc6172df1a03fe6a4952cdbc88d349bcae
|
data/lib/dev_commands.rb
CHANGED
@@ -852,13 +852,13 @@ class Setup < Array
|
|
852
852
|
|
853
853
|
if(defined?(GIT_EXPORTS))
|
854
854
|
GIT_EXPORTS.each{|k,v|
|
855
|
-
|
856
|
-
|
855
|
+
directory = "#{Command.dev_root}/dep/#{k}"
|
856
|
+
if(!File.exists?(directory))
|
857
857
|
if(v.include?('@'))
|
858
|
-
add "git clone #{v.split('@')[0]} #{
|
858
|
+
add "git clone #{v.split('@')[0]} #{directory}"
|
859
859
|
add "git reset --hard #{v.split('@')[1]}"
|
860
860
|
else
|
861
|
-
add "git clone #{v} #{
|
861
|
+
add "git clone #{v} #{directory}"
|
862
862
|
end
|
863
863
|
end
|
864
864
|
}
|