Merge branch 'cargo-config-directly' into 'master'

Use the cargo-config binary directly instead of through cargo

See merge request redox-os/cookbook!251
This commit is contained in:
Jeremy Soller 2022-11-11 15:53:48 +00:00
commit a551814a89

View File

@ -198,7 +198,8 @@ function op {
fi
if [ "$skip" -eq "0" ]
then
cargo config package.version | tr -d '"'
# there's an unstable built-in cargo config command, so hack around it
cargo-config config package.version | tr -d '"'
fi
popd > /dev/null
;;