You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli-reference/dfx-envars.mdx
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,17 +54,13 @@ Use the `DFX_MOC_PATH` environment variable to use a different version of the Mo
54
54
55
55
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:
56
56
57
-
-`version_check`: Disables the warning message that is displayed when you use an older version of the SDK.
58
57
-`mainnet_plaintext_identity`: Disables the warning message that is displayed when you use an insecure identity on the Internet Computer mainnet.
59
58
60
59
```bash
61
-
export DFX_WARNING="-version_check"
62
-
DFX_VERSION=0.13.1 dfx deploy --network ic
63
-
64
60
export DFX_WARNING="-mainnet_plaintext_identity"
65
61
dfx deploy --network ic
66
62
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
0 commit comments