Skip to content

Commit 6183689

Browse files
authored
Update REPLACING_CARGO.md to fix #195
1 parent ba9bf87 commit 6183689

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

REPLACING_CARGO.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ In some cases using shell aliases is not an option, e.g. in certain restricted b
2020

2121
```bash
2222
#!/bin/sh
23-
export CARGO='/path/to/real/cargo' # replace this with your path
24-
cargo-auditable auditable "$@"
25-
```
23+
REAL_CARGO='/path/to/real/cargo' # replace this with your path
24+
exec "$REAL_CARGO" auditable "$@"
25+
```

0 commit comments

Comments
 (0)