From 51d002f65fd7c42acb3c871a55e20aeceadb6c9c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 22 Feb 2018 16:40:26 -0800 Subject: [PATCH] [SabreTools] Fix short flag issues --- SabreTools/SabreTools.Help.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools/SabreTools.Help.cs b/SabreTools/SabreTools.Help.cs index 92efc698..46908f8a 100644 --- a/SabreTools/SabreTools.Help.cs +++ b/SabreTools/SabreTools.Help.cs @@ -51,7 +51,7 @@ namespace SabreTools { return new Feature( "archives-as-files", - new List() { "-f", "--archives-as-files" }, + new List() { "-aaf", "--archives-as-files" }, "Treat archives as files", FeatureType.Flag, longDescription: "Instead of trying to enumerate the files within archives, treat the archives as files themselves. This is good for uncompressed sets that include archives that should be read as-is.");