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
This commit is contained in:
Arif Ali 2022-09-23 22:05:18 -07:00 committed by Lea Anthony
commit 2940a9e7ef
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405

View file

@ -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).