diff options
author | van Hauser <vh@thc.org> | 2020-04-20 22:14:41 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-20 22:14:41 +0200 |
commit | e47c29e72847b780ffa54a3fdbadd0e01d8882d5 (patch) | |
tree | 3f193da0f0179eabb78600564d23376877b1534b | |
parent | 280374f7399e9e93f6e04a35fa1cb5e684f9a5d4 (diff) | |
download | afl++-e47c29e72847b780ffa54a3fdbadd0e01d8882d5.tar.gz |
dont error on git reset
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 78763ecf..2337b9e0 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -435,7 +435,7 @@ endif deepclean: clean rm -rf qemu_mode/qemu-3.1.1.tar.xz rm -rf unicorn_mode/unicornafl - git reset --hard || true + git reset --hard >/dev/null 2>&1 || true distrib: all radamsa -$(MAKE) -C llvm_mode |