make_vendor_tarball: fix deprecated name for vendor Cargo manifest

> /builddir/build/BUILD/fish-3.7.1+2217.gbd5f9babd-build/fish-3.7.1-2217-gbd5f9babd/.cargo/config
> is deprecated in favor of config.toml
This commit is contained in:
Johannes Altmanninger 2024-08-09 15:06:08 +02:00
parent bd5f9babd7
commit 09797acf92

View file

@ -43,7 +43,7 @@ PREFIX_TMPDIR=$(mktemp -d)
cd "$PREFIX_TMPDIR"
mkdir .cargo
cargo vendor --manifest-path "$wd/Cargo.toml" > .cargo/config
cargo vendor --manifest-path "$wd/Cargo.toml" > .cargo/config.toml
tar cfvJ $path.xz vendor .cargo