Skip to content

Commit 07963a3

Browse files
author
Eric Swanson
authored
docs: remove reference to obsolete warning (#3780)
warning was removed in #3624
1 parent e28a878 commit 07963a3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

docs/cli-reference/dfx-envars.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,13 @@ Use the `DFX_MOC_PATH` environment variable to use a different version of the Mo
5454

5555
Use the `DFX_WARNING` environment variable to disable one or more warnings that dfx may display. The value is a comma-separated list of warning names, each prefixed with a "-" to disable. The following warning names are currently supported:
5656

57-
- `version_check`: Disables the warning message that is displayed when you use an older version of the SDK.
5857
- `mainnet_plaintext_identity`: Disables the warning message that is displayed when you use an insecure identity on the Internet Computer mainnet.
5958

6059
```bash
61-
export DFX_WARNING="-version_check"
62-
DFX_VERSION=0.13.1 dfx deploy --network ic
63-
6460
export DFX_WARNING="-mainnet_plaintext_identity"
6561
dfx deploy --network ic
6662

67-
# disable multiple warnings, though dfx 0.13.1 does not know about the mainnet_plaintext_identity warning
63+
# disable multiple warnings, though dfx 0.13.1 does not know about the mainnet_plaintext_identity warning and version_check no longer exists
6864
export DFX_WARNING="-version_check,-mainnet_plaintext_identity"
6965
DFX_VERSION=0.13.1 dfx deploy --network ic
7066
```

0 commit comments

Comments
 (0)