From c57429d677428ab5d3489c0c8d7d8af98c30b76b Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 7 Jan 2024 10:41:23 -0800 Subject: [PATCH] Hide the `--set-icon-using` arg. --- src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.rs b/src/options.rs index 9f7b556..3a665e3 100644 --- a/src/options.rs +++ b/src/options.rs @@ -60,7 +60,7 @@ struct FolderifyArgs { no_progress: bool, /// Program used to set the icon. `osascript` should work in most circumstances, `fileicon` performs more checks, and `rez` produces smaller but less accurate icons. - #[arg(long)] + #[arg(long, hide(true))] set_icon_using: Option, /// Detailed output. Also sets `--no-progress`.