From 9fbc7a61d95ae58f04b973124cc0fe03aef19af4 Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Wed, 2 Jun 2021 15:52:28 -0500 Subject: [PATCH] Use the cargo-config binary directly instead of through cargo --- cook.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cook.sh b/cook.sh index c269574cd..85ebddc65 100755 --- a/cook.sh +++ b/cook.sh @@ -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 ;;