From 6c8f006da7df2f93e39de08204240e79abe924e5 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Wed, 26 Mar 2025 11:12:36 -0400 Subject: [PATCH] Update CLI help information and add steam-sync CLI option --- retrodeck.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/retrodeck.sh b/retrodeck.sh index 75a60005..ede8a51f 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -14,6 +14,8 @@ Arguments: --configurator \t Starts the RetroDECK Configurator --compress-one \t Compresses target file to a compatible format --compress-all \t Compresses all supported games into a compatible format.\n\t\t\t\t\t\t Available formats are \"chd\", \"zip\", \"rvz\" and \"all\" + --steam-sync \t Run the Steam ROM Manager sync process to update all ES-DE favorites in Steam + --repair-paths \t Reconfigure broken folder locations in RetroDECK without a full reset --reset \t Reset RetroDECK or one or more component/emulator configurations to default values. WARNING: no confirmation prompt --factory-reset \t Factory Reset, triggers the initial setup WARNING: no confirmation prompt --test-upgrade \t Test upgrading RetroDECK to a specific version, developer use only @@ -109,6 +111,10 @@ while [[ $# -gt 0 ]]; do cli_compress_all_games "$2" shift 2 ;; + --steam-sync) + steam_sync + exit 0 + ;; --repair-paths) repair_paths exit 0