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/Spago/Command/Fetch.purs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -530,7 +530,8 @@ getPackageDependencies packageName package = case package of
530
530
, "However, it didn't contain a `package` section."
531
531
]
532
532
Left errLines -> die
533
-
[ toDoc $ "Could not read config at " <> configLocation
533
+
[ toDoc $ "Could not lookup the dependencies of " <> PackageName.print packageName <> " in a spago.yaml config file."
534
+
, toDoc $ "Either make sure this file exists and is readable or declare its dependencies in your project's spago.yaml under workspace.extraPackages." <> PackageName.print packageName <> ".dependencies"
0 commit comments