Use the cargo-config binary directly instead of through cargo

This commit is contained in:
Noah 2021-06-02 15:52:28 -05:00 committed by Noah
parent 59779a5793
commit 9fbc7a61d9
No known key found for this signature in database
GPG Key ID: E8C14146AE337195

View File

@ -312,7 +312,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
;;