From e45325e25a4283b69acc0caebec4c8d7a9afee17 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Thu, 25 Nov 2021 15:48:53 +0100 Subject: [PATCH] Fixing tests --- tools/build_makefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_makefile.py b/tools/build_makefile.py index 552077b..ac290ad 100755 --- a/tools/build_makefile.py +++ b/tools/build_makefile.py @@ -248,7 +248,7 @@ def main(): "" ] tmp = "EXTRA_DIST += " - r = subprocess.check_output("git ls-tree --name-only -r master".split()) + r = subprocess.check_output("git ls-tree --name-only -r HEAD".split()) for line in r.splitlines(): if "share/qmckl/test_data/" in line: tmp += " \\\n " + line