From 73b9dead5d37684a14a1f6994620460ecb41bb06 Mon Sep 17 00:00:00 2001 From: Arif Ali <51419655+arifali123@users.noreply.github.com> Date: Fri, 23 Sep 2022 22:05:18 -0700 Subject: [PATCH] obfuscated instead of obfuscate in the docs (#1895) the option in the docs is the wrong flag you have to add a d at the end --- website/versioned_docs/version-v2.0.0/guides/obfuscated.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/versioned_docs/version-v2.0.0/guides/obfuscated.mdx b/website/versioned_docs/version-v2.0.0/guides/obfuscated.mdx index c062d0f46..2e7906c40 100644 --- a/website/versioned_docs/version-v2.0.0/guides/obfuscated.mdx +++ b/website/versioned_docs/version-v2.0.0/guides/obfuscated.mdx @@ -5,13 +5,13 @@ Wails includes support for obfuscating your application using [garble](https://g To produce an obfuscated build, you can use the `-obfuscate` flag with the `wails build` command: ```bash -wails build -obfuscate +wails build -obfuscated ``` To customise the obfuscation settings, you can use the `-garbleargs` flag: ```bash -wails build -obfuscate -garbleargs "-literals -tiny -seed=myrandomseed" +wails build -obfuscated -garbleargs "-literals -tiny -seed=myrandomseed" ``` These settings may be persisted in your [project config](../reference/project-config).