diff options
-rwxr-xr-x | scripts/list-snapshots.py | 3 |
1 files changed, 3 insertions, 0 deletions
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)) |