diff --git a/moulin/fetchers/http.py b/moulin/fetchers/http.py index 6c0da6f..7e08825 100644 --- a/moulin/fetchers/http.py +++ b/moulin/fetchers/http.py @@ -16,7 +16,9 @@ def get_fetcher(conf: YamlValue, build_dir: str, generator: ninja_syntax.Writer) def gen_build_rules(generator: ninja_syntax.Writer): """Generate build rules using Ninja generator""" - generator.rule("curl_download", command="curl $url -o $out ", description="curl download $url") + generator.rule("curl_download", + command="curl -L $url -o $out ", + description="curl download $url") generator.newline()