From 96c196dcb14e37ad91b751af61ee8382547c1ca3 Mon Sep 17 00:00:00 2001 From: Sharun <715417+sharunkumar@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:15:21 -0400 Subject: [PATCH] fix: Log correct options command (#262) --- src/main/kotlin/app/revanced/cli/command/OptionsCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/cli/command/OptionsCommand.kt b/src/main/kotlin/app/revanced/cli/command/OptionsCommand.kt index 863f8d7..f81c273 100644 --- a/src/main/kotlin/app/revanced/cli/command/OptionsCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/OptionsCommand.kt @@ -42,5 +42,5 @@ internal object OptionsCommand : Runnable { Options.serialize(this, prettyPrint = true).let(filePath::writeText) } - else logger.severe("Options file already exists, use --override to override it") + else logger.severe("Options file already exists, use --overwrite to override it") } \ No newline at end of file