From 9b16092031b306c7dc49dde70df74461ebea4a23 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 4 Sep 2019 23:16:30 +0200 Subject: add reset command to supermalloc definition --- src/allocators/supermalloc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/allocators/supermalloc.py b/src/allocators/supermalloc.py index b895983..130dd47 100644 --- a/src/allocators/supermalloc.py +++ b/src/allocators/supermalloc.py @@ -25,7 +25,8 @@ VERSION = "709663fb81ba091b0a78058869a644a272f4163d" sources = AllocatorSources("SuperMalloc", retrieve_cmds=["git clone https://github.com/kuszmaul/SuperMalloc"], - prepare_cmds=[f"git checkout {VERSION}"]) + prepare_cmds=[f"git checkout {VERSION}"], + reset_cmds=["git reset --hard"]) class SuperMalloc(Allocator): -- cgit v1.2.3