From 9f50a69dfbe7ec6ff72de56a89715d8e1c146a7b Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Sun, 18 Apr 2021 17:44:32 +0700 Subject: Filter out the upper level snapshot dir. --- scripts/list-snapshots.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts') diff --git a/scripts/list-snapshots.py b/scripts/list-snapshots.py index 2f10a56..f52f941 100755 --- a/scripts/list-snapshots.py +++ b/scripts/list-snapshots.py @@ -50,6 +50,9 @@ snapshots = [] for name in snapshot_names: + if name == "snapshot/equuleus/": + continue + snapshot = {} snapshot['name'] = name snapshot['files'] = list(filter(lambda s: re.search(name, s), files)) -- cgit v1.2.3