lean4-htt/src/lake/Lake/Load
Markus Himmel 8671f81aa5
fix: lakefile require syntax in package not found on Reservoir error (#11198)
This PR fixes an error message in Lake which suggested incorrect
lakefile syntax.

The error message (which was very helpful by the way) looked like this:
```
error: TwoFX/batteries: package not found on Reservoir.

  If the package is on GitHub, you can add a Git source. For example:

    require ...
      from git "https://github.com/TwoFX/batteries" @ git "main"

  or, if using TOML:

    [[require]]
    git = "https://github.com/TwoFX/batteries"
    rev = "main"
    ...
```

The suggested Lakefile syntax does not work. The correct syntax,
according to the reference manual and according to my tests, is
```
    require ...
      from git "https://github.com/TwoFX/batteries" @ "main"
```
without the second `git`.
2025-11-17 15:12:23 +00:00
..
Lean feat: lake: rename dependencies (#10452) 2025-09-25 22:10:39 +00:00
Config.lean feat: lake: rename dependencies (#10452) 2025-09-25 22:10:39 +00:00
Lean.lean feat: lake: rename dependencies (#10452) 2025-09-25 22:10:39 +00:00
Manifest.lean feat: lake cache (& remote cache support) (#10188) 2025-09-26 01:13:43 +00:00
Materialize.lean fix: lakefile require syntax in package not found on Reservoir error (#11198) 2025-11-17 15:12:23 +00:00
Package.lean feat: lake cache (& remote cache support) (#10188) 2025-09-26 01:13:43 +00:00
Resolve.lean feat: lake: use system cache for bootstrap (#10621) 2025-09-30 00:57:45 +00:00
Toml.lean chore: rename Substring to Substring.Raw (#11154) 2025-11-16 09:30:04 +00:00
Workspace.lean feat: lake cache (& remote cache support) (#10188) 2025-09-26 01:13:43 +00:00