You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("--sync", action="store_true", help="Sync a desktop configuration")
20
-
parser.add_argument("--save-now", action="store_true", help="Save a configuration using UI parameters (learn more: https://vikdevelop.github.io/SaveDesktop/wiki/saving-importing-configuration-in-cli/en#saving-configuration)")
21
-
parser.add_argument("--save-without-archive", type=str, help="Save a configuration without an archive", dest="FOLDER_PATH")
22
-
parser.add_argument("--import-config", help="Import a configuration from a file (learn more: https://vikdevelop.github.io/SaveDesktop/wiki/saving-importing-configuration-in-cli/en#importing-configuration)", type=str, dest="CFG_ARCHIVE_PATH")
parser.add_argument("--save-now", action="store_true", help="Save a configuration using UI parameters such as periodic saving folder, file name format and password for encryption.")
21
+
parser.add_argument("--save-without-archive", type=str, help="Save the configuration without an archive", dest="FOLDER_PATH")
22
+
parser.add_argument("--import-config", help="Import a configuration from a file (*.sd.zip or *.sd.tar.gz) or folder", type=str, dest="CFG_ARCHIVE_PATH")
23
23
cmd=parser.parse_args()
24
24
25
25
# Run Python scripts from the listed command-line arguments
@@ -60,7 +60,7 @@ elif cmd.CFG_ARCHIVE_PATH: # import a configuration from a file, or folder
0 commit comments