From 120ff2f629318566516851502a3cd6ece078a132 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 18 Apr 2018 11:50:59 +0200 Subject: [PATCH] Fix download of occt in nix build --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index 68ca5506c9..28c3cf4838 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -486,7 +486,7 @@ if USE_OCCT: "-DBUILD_MODULE_Draw=0", ], download_url = "%s;a=snapshot;h=%s;sf=tgz" % (occt_gitweb, OCCT_HASH), - additional_files = {fn: "%s;a=blob_plain;hb=%s;f=%s.hxx" % (occt_gitweb, OCCT_HASH, fn) for fn in long_filenames_ext}, + additional_files = {fn: "%s;a=blob_plain;hb=%s;f=%s" % (occt_gitweb, OCCT_HASH, fn) for fn in long_filenames_ext}, patch = patch_filename, download_name = "occt-%s.tar.gz" % OCCT_HASH, no_append_name = True)