dependabot-common 0.111.16 → 0.111.17
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e460f3c64020604d859bc59f0058835f238ad2d50ccc26d1fd386db75f44c43
|
|
4
|
+
data.tar.gz: d65b7b817576a68ae97cdf2c2eaf755bef96a61346bb113df46582185d42b616
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15ef9166c8b8d4813c1cbe2db26c32d796a99270874716b16c892cc00123865b2a9196207a261288d4dd7e0cd02fac7a10a76475440242b166ffeba5579d0079
|
|
7
|
+
data.tar.gz: cf2c4414d92469283a6b18793f0a1f6d4d4f453f18efc39cfd1cc0593a5dc8b34e786913fd89d658b23faf4cbdc58c1b7d2192a476aa164596a2e1c62ca59309
|
|
@@ -56,6 +56,10 @@ module Dependabot
|
|
|
56
56
|
raise unless e.message == "No such file or directory - pandoc"
|
|
57
57
|
|
|
58
58
|
# If pandoc isn't installed just return the rst
|
|
59
|
+
pruned_text
|
|
60
|
+
rescue RuntimeError => e
|
|
61
|
+
raise unless e.message == "Pandoc timed out"
|
|
62
|
+
|
|
59
63
|
pruned_text
|
|
60
64
|
end
|
|
61
65
|
end
|
data/lib/dependabot/version.rb
CHANGED