File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -169,14 +169,14 @@ to `.vscode/settings.json` in your local Miri clone:
169
169
],
170
170
"rust-analyzer.checkOnSave.overrideCommand" : [
171
171
" env" ,
172
- " AUTO_OPS=42 " ,
172
+ " MIRI_AUTO_OPS=no " ,
173
173
" ./miri" ,
174
174
" check" ,
175
175
" --message-format=json"
176
176
],
177
177
"rust-analyzer.buildScripts.overrideCommand" : [
178
178
" env" ,
179
- " AUTO_OPS=42 " ,
179
+ " MIRI_AUTO_OPS=no " ,
180
180
" ./miri" ,
181
181
" check" ,
182
182
" --message-format=json" ,
Original file line number Diff line number Diff line change 53
53
MIRIDIR=$( python3 -c ' import os, sys; print(os.path.dirname(os.path.realpath(sys.argv[1])))' " $0 " )
54
54
55
55
# # Run the auto-things.
56
- if [ -z " $AUTO_OPS " ]; then
57
- export AUTO_OPS =42
56
+ if [ -z " $MIRI_AUTO_OPS " ]; then
57
+ export MIRI_AUTO_OPS =42
58
58
59
59
# Run this first, so that the toolchain doesn't change after
60
60
# other code has run.
You can’t perform that action at this time.
0 commit comments