dgd-tools 0.1.12 → 0.1.13
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/dgd-tools/manifest.rb +2 -1
- data/lib/dgd-tools/version.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: '09795a79f0f25997d2d403b58dd2b0c0dc9142bbfac33a4ca4e5e50fc1f67a05'
|
|
4
|
+
data.tar.gz: c5c514b79bd5a14ae6b07812dd2b179cf11224d84fa31816aada17e23721221b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3c114b8dd4397999651767d0b3a314aa0c482a54490076ad3ee20857eef8a091cdf7870ba4c661480f2033ffd298fbba171e803b56dcc04a7713448c9854000
|
|
7
|
+
data.tar.gz: 55d832529241bbc7f8154757ec93f8e7e0472d09a8d9a4144573bbb80216cfca87a372b939c52f1573f8f687b03c8f4c8567f0342b3cab8e6aac04888eb301d3
|
data/lib/dgd-tools/manifest.rb
CHANGED
|
@@ -148,7 +148,8 @@ module DGD::Manifest
|
|
|
148
148
|
FileUtils.mkdir_p(repos_dir) # Links to repos in manifest
|
|
149
149
|
|
|
150
150
|
@manifest_file.ordered_specs.each do |spec|
|
|
151
|
-
|
|
151
|
+
# force:true prevents getting an exception if the file exists
|
|
152
|
+
FileUtils.ln_s(spec.source.local_dir, File.join(".repos", spec.name), force: true)
|
|
152
153
|
end
|
|
153
154
|
|
|
154
155
|
assembly_operations(location, verbose: verbose).each do |sd_hash|
|
data/lib/dgd-tools/version.rb
CHANGED