small fixes

This commit is contained in:
2023-09-22 14:17:25 +02:00
parent 488c59f667
commit ebc0ea5d84
2 changed files with 1 additions and 1 deletions

View File

@ -145,6 +145,7 @@ def list_files(snapshot, path):
@click.option('snapshot', '--snapshot', '-s', envvar='SNAPSHOT', default='latest')
@click.option('path', '--path', '-p', envvar='INCLUDE_PATH')
def download(snapshot, path):
path = path.removesuffix('/')
files = list_files(snapshot, path)
filetype = [f.get('type') for f in files if f.get('path') == path][0]
cmd = restic.cat.base_command() + ['dump', snapshot, path]