浏览代码

add argument for restore path

Divyansh Singh 2 年之前
父节点
当前提交
82d851d891
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      borgmatic/commands/arguments.py

+ 4 - 0
borgmatic/commands/arguments.py

@@ -735,6 +735,10 @@ def make_parsers():
         '--password',
         help='Password with which to connect to the restore database. Defaults to the "restore_password" option in borgmatic\'s configuration',
     )
+    restore_group.add_argument(
+        '--restore-path',
+        help='Path to restore SQLite database dumps to. Defaults to the "restore_path" option in borgmatic\'s configuration',
+    )
     restore_group.add_argument(
         '-h', '--help', action='help', help='Show this help message and exit'
     )