diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-23 13:51:40 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-23 13:51:40 +0200 |
| commit | 3f43d0f464b8da5829ff652a3208720c74d1882b (patch) | |
| tree | d5c9789367c906b4458f5d8806bb36a9021fd437 | |
| parent | 6e019b83c2f82552704feb4d8ce18e0d3a19d75a (diff) | |
| download | allocbench-3f43d0f464b8da5829ff652a3208720c74d1882b.tar.gz allocbench-3f43d0f464b8da5829ff652a3208720c74d1882b.zip | |
don't prepare fd if it was already prepared
| -rw-r--r-- | src/benchmarks/fd.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/benchmarks/fd.py b/src/benchmarks/fd.py index e133e1c..21a987d 100644 --- a/src/benchmarks/fd.py +++ b/src/benchmarks/fd.py @@ -41,6 +41,9 @@ class BenchmarkFd(Benchmark): def prepare(self): super().prepare() + if os.path.exists(self.build_dir): + return + fd_version = "v7.4.0" self.results["facts"]["versions"]["fd"] = fd_version fd_url = ("https://github.com/sharkdp/fd/releases/latest/download/" |
