mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
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:
parent
bd5f9babd7
commit
09797acf92
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue