bundles/zfs: fix typo
kunsi/bundlewrap/pipeline/head There was a failure building this commit Details

This commit is contained in:
Franzi 2022-01-05 10:03:54 +01:00
parent c9054a243a
commit b5f93ceb48
Signed by: kunsi
GPG Key ID: 12E3D2136B818350
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ for line in check_output(['zfs', 'list', '-H', '-o', 'name']).splitlines():
line = line.decode('UTF-8')
for prefix in metadata.get('snapshot_never', set()):
if dataset.startswith(prefix):
if line.startswith(prefix):
break
else:
datasets.add(line)