fix void builds

This commit is contained in:
core 2023-07-18 22:03:25 -04:00
parent d5c89c292f
commit 7d5a759bdd
Signed by: core
GPG Key ID: FDBF740DADDCEECF
2 changed files with 6 additions and 6 deletions

View File

@ -4,8 +4,8 @@ set -e
cd $1 || exit cd $1 || exit
cd tfcli || exit cd tfcli || exit
echo "Building for release, v$2_$3 (+static) (--target x86_64-unknown-musl)" echo "Building for release, v$2_$3 (+static) (--target x86_64-unknown-gnu)"
cargo build --release --target x86_64-unknown-linux-musl cargo build --release
cd ../packages/void_amd64_tfcli || exit cd ../packages/void_amd64_tfcli || exit
@ -17,7 +17,7 @@ mkdir -p work/etc/sv
echo "Copying tfcli binary" echo "Copying tfcli binary"
cp ../../target/x86_64-unknown-linux-musl/release/tfcli work/usr/bin/tfcli cp ../../target/release/tfcli work/usr/bin/tfcli
chmod 755 work/usr/bin/tfcli chmod 755 work/usr/bin/tfcli
echo "Building XBPS package" echo "Building XBPS package"

View File

@ -4,8 +4,8 @@ set -e
cd $1 || exit cd $1 || exit
cd tfclient || exit cd tfclient || exit
echo "Building for release, v$2_$3 (+static) (--target x86_64-unknown-musl)" echo "Building for release, v$2_$3 (+static) (--target x86_64-unknown-gnu)"
cargo build --release --target x86_64-unknown-linux-musl cargo build --release
cd ../packages/void_amd64_tfclient || exit cd ../packages/void_amd64_tfclient || exit
@ -17,7 +17,7 @@ mkdir -p work/etc/sv
echo "Copying tfclient binary" echo "Copying tfclient binary"
cp ../../target/x86_64-unknown-linux-musl/release/tfclient work/usr/bin/tfclient cp ../../target/release/tfclient work/usr/bin/tfclient
chmod 755 work/usr/bin/tfclient chmod 755 work/usr/bin/tfclient
cp -r tfclient work/etc/sv cp -r tfclient work/etc/sv