Jean-Marc Le Roux
Jean-Marc Le Roux
@davidB any update on this?
> Would it possible to change the package extension from *.tar.gz for example to *.gpm? > Maybe as option or with a config file? Our philosophy is to use existing...
I see. The way we designed it, GPM-compliant git repositories don't store non-GPM-compliant files. I guess the current implementation won't mind either way. I'll give it some thinking. Maybe something...
@Johjo thank you for your feedback! This can probably be implemented using `Remote::default_branch()`: https://docs.rs/git2/0.13.23/git2/struct.Remote.html#method.default_branch
> What's the path of the sources directory in Windows? @GalGreenfield what do you mean exactly when you say "sources"? If you mean the `.gpm` folder it's in the home...
> And I mean the file sources.list - on Linux it's where you said - I'm asking where it is on Windows. On Windows it is in the "same location"...
@denismerigoux just suggested on Twitter via DM to inline the implementation of `handle_default()`. I'll try to see how that can work.
> You can inline it either directly at the level of your specific backend I'm not sure how I would handle all the possible (parameter) permutations at the top level....
> ```ocaml > let current_exception = match Some (try e1) with EmptyError -> None > ``` The problem is then to have the "option" idiom ( `Some` / `None`). I...
> The Some idiom is missing here, since just is typed as function() returns (T memory) and T is not Option or something like that. @denismerigoux so my conclusion is...