On Tue, Jan 16, 2018 at 9:42 PM, geraldo netto <[email protected]> wrote:
> Signed-off-by: geraldo netto <[email protected]> > --- > elixir/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/elixir/Makefile b/elixir/Makefile > index c6de0d5..a6928d0 100644 > --- a/elixir/Makefile > +++ b/elixir/Makefile > @@ -6,7 +6,7 @@ all: install > module: install > > elixir-$(ELIXIR_VERSION).tar.gz: > - wget -O "[email protected]" "https://github.com/elixir- > lang/elixir/archive/v$(ELIXIR_VERSION).tar.gz" > + wget -c -O "[email protected]" "https://github.com/elixir- > lang/elixir/archive/v$(ELIXIR_VERSION).tar.gz" mv "[email protected]" "$@" > I'm not sure this change makes sense. What this code does is to get a *new* file something.temp, and when successful, write the target file. It already does this correctly, even if interrupted in the middle. I'm not even sure that "-c" and "-O" work together - have you tried? > elixir-$(ELIXIR_VERSION): elixir-$(ELIXIR_VERSION).tar.gz > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups > "OSv Development" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
