From c47e655ffe7a8c2cde0cdc1f7ad3c8da6dbd6e29 Mon Sep 17 00:00:00 2001 From: Franziskus Kiefer Date: Mon, 3 Jul 2017 10:23:04 +0200 Subject: [PATCH] Bug 1372127 - move .chk to root folder, r=ttaubert Differential Revision: https://nss-review.dev.mozaws.net/D360 --HG-- extra : histedit_source : f53d22ec9e3b2f0a7a408e2db569ce2c80cc0b8b%2Ce5730e63a84b8c9e4f2c91fff5e717072f4d5c10 --- .gitignore | 1 + .hgignore | 1 + mach | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 079fcae258..b137867f5f 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ GTAGS fuzz/libFuzzer/* fuzz/corpus fuzz/out +.chk diff --git a/.hgignore b/.hgignore index a8d626ecdd..feef650075 100644 --- a/.hgignore +++ b/.hgignore @@ -18,3 +18,4 @@ GTAGS fuzz/libFuzzer/* fuzz/corpus fuzz/out +.chk diff --git a/mach b/mach index 16e6dcab02..22546d732b 100755 --- a/mach +++ b/mach @@ -66,7 +66,7 @@ class cfAction(argparse.Action): for file in files: with open(os.path.join(dirname, file), "rb") as f: hash.update(f.read()) - chk_file = cwd + "/out/.chk" + chk_file = cwd + "/.chk" old_chk = "" new_chk = hash.hexdigest() if os.path.exists(chk_file):