From 618368956f7f999604ab37c73e324955fd182c1c Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Mon, 7 Apr 2025 22:29:01 +0100 Subject: [PATCH] Update REPLACING_CARGO.md to fix #195 --- REPLACING_CARGO.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 "$@" +```