newapkbuild: do not expand $CTARGET

This commit is contained in:
Cowington Post 2023-06-22 07:13:25 -07:00
parent fdbd71d816
commit 7e82b6a34b
No known key found for this signature in database
GPG Key ID: FAE2E64B64FEB174
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ is_github_url() {
prepare_rust() {
cat >>APKBUILD<<__EOF__
cargo fetch --target="$CTARGET" --locked
cargo fetch --target="\$CTARGET" --locked
__EOF__
}