From bd259225af182927e279aacf7a9006e785418771 Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Mon, 13 Jun 2022 14:25:47 +0200 Subject: [PATCH] exclude db file --- cross_compile_all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cross_compile_all.sh b/cross_compile_all.sh index b7e0d4ce..7e0f0a0c 100755 --- a/cross_compile_all.sh +++ b/cross_compile_all.sh @@ -25,7 +25,7 @@ for target in "${targets[@]}"; do fi cp ./target/${target}/release/ffplayout.exe . - zip -r "ffplayout-engine-v${version}_${target}.zip" assets docs LICENSE README.md ffplayout.exe + zip -r "ffplayout-engine-v${version}_${target}.zip" assets docs LICENSE README.md ffplayout.exe -x *.db rm -f ffplayout.exe else if [[ -f "ffplayout-engine-v${version}_${target}.tar.gz" ]]; then @@ -33,7 +33,7 @@ for target in "${targets[@]}"; do fi cp ./target/${target}/release/ffplayout . - tar -czvf "ffplayout-engine-v${version}_${target}.tar.gz" assets docs LICENSE README.md ffplayout + tar -czvf "ffplayout-engine-v${version}_${target}.tar.gz" --exclude='*.db' assets docs LICENSE README.md ffplayout rm -f ffplayout fi