diff --git a/REPLACING_CARGO.md b/REPLACING_CARGO.md index cb73762..a9d862b 100644 --- a/REPLACING_CARGO.md +++ b/REPLACING_CARGO.md @@ -20,6 +20,6 @@ In some cases using shell aliases is not an option, e.g. in certain restricted b ```bash #!/bin/sh -export CARGO='/path/to/real/cargo' # replace this with your path -cargo-auditable auditable "$@" -``` \ No newline at end of file +REAL_CARGO='/path/to/real/cargo' # replace this with your path +exec "$REAL_CARGO" auditable "$@" +```