Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mirage/mirage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bfe88ff4ca3b
Choose a base ref
...
head repository: mirage/mirage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d255cb282f27
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 19, 2017

  1. Copy the full SHA
    fe0e87a View commit details
  2. Copy the full SHA
    f726f13 View commit details
  3. Merge pull request #848 from mor1/fix-kv_ro-archive

    fix reference to tar library for `--kv_ro archive`
    djs55 authored Jul 19, 2017
    Copy the full SHA
    d255cb2 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/mirage.ml
2 changes: 1 addition & 1 deletion lib/mirage.ml
Original file line number Diff line number Diff line change
@@ -443,7 +443,7 @@ let archive_conf = impl @@ object
method name = "archive"
method module_name = "Tar_mirage.Make_KV_RO"
method packages =
Key.pure [ package ~min:"0.7.0" ~ocamlfind:["tar.mirage"] "tar-format" ]
Key.pure [ package ~min:"0.8.0" "tar-mirage" ]
method connect _ modname = function
| [ block ] -> Fmt.strf "%s.connect %s" modname block
| _ -> failwith (connect_err "archive" 1)