You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Builder/Reporting/Exit.elm
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1760,23 +1760,42 @@ uninstallToReport exit =
1760
1760
1761
1761
1762
1762
type Solver
1763
-
=SolverBadCacheDataPkg.NameV.Version
1764
-
|SolverBadHttpDataPkg.NameV.VersionString
1763
+
=SolverBadCacheGuidaDataPkg.NameV.Version
1764
+
|SolverBadCacheElmDataPkg.NameV.Version
1765
+
|SolverBadHttpGuidaDataPkg.NameV.VersionString
1766
+
|SolverBadHttpElmDataPkg.NameV.VersionString
1765
1767
|SolverBadHttpPkg.NameV.VersionHttp.Error
1766
1768
1767
1769
1768
1770
toSolverReport:Solver->Help.Report
1769
1771
toSolverReport problem =
1770
1772
case problem of
1771
-
SolverBadCacheData pkg vsn ->
1773
+
SolverBadCacheGuidaData pkg vsn ->
1774
+
Help.report "PROBLEM SOLVING PACKAGE CONSTRAINTS"
1775
+
Nothing
1776
+
("I need the guida.json of "++Pkg.toChars pkg ++""++V.toChars vsn ++" to help me search for a set of compatible packages. I had it cached locally, but it looks like the file was corrupted!")
1777
+
[D.reflow <|
1778
+
"I deleted the cached version, so the next run should download a fresh copy. Hopefully that will get you unstuck, but it will not resolve the root problem if a 3rd party tool is modifing cached files for some reason."
1779
+
]
1780
+
1781
+
SolverBadCacheElmData pkg vsn ->
1772
1782
Help.report "PROBLEM SOLVING PACKAGE CONSTRAINTS"
1773
1783
Nothing
1774
1784
("I need the elm.json of "++Pkg.toChars pkg ++""++V.toChars vsn ++" to help me search for a set of compatible packages. I had it cached locally, but it looks like the file was corrupted!")
1775
1785
[D.reflow <|
1776
1786
"I deleted the cached version, so the next run should download a fresh copy. Hopefully that will get you unstuck, but it will not resolve the root problem if a 3rd party tool is modifing cached files for some reason."
1777
1787
]
1778
1788
1779
-
SolverBadHttpData pkg vsn url ->
1789
+
SolverBadHttpGuidaData pkg vsn url ->
1790
+
Help.report "PROBLEM SOLVING PACKAGE CONSTRAINTS"
1791
+
Nothing
1792
+
("I need the guida.json of "++Pkg.toChars pkg ++""++V.toChars vsn ++" to help me search for a set of compatible packages, but I ran into corrupted information from:")
1793
+
[D.indent 4<|D.dullyellow <|D.fromChars url
1794
+
,D.reflow <|
1795
+
"Is something weird with your internet connection. We have gotten reports that schools, businesses, airports, etc. sometimes intercept requests and add things to the body or change its contents entirely. Could that be the problem?"
1796
+
]
1797
+
1798
+
SolverBadHttpElmData pkg vsn url ->
1780
1799
Help.report "PROBLEM SOLVING PACKAGE CONSTRAINTS"
1781
1800
Nothing
1782
1801
("I need the elm.json of "++Pkg.toChars pkg ++""++V.toChars vsn ++" to help me search for a set of compatible packages, but I ran into corrupted information from:")
0 commit comments