mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-02-01 07:39:11 +00:00
Tested and working on Android 15 QPR2 (library: `/apex/com.android.btservices/lib64/libbluetooth_jni.so`)
12 lines
269 B
Bash
Executable File
12 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
cd root-module
|
|
rm -f ../btl2capfix.zip
|
|
|
|
# COPYFILE_DISABLE env is a macOS fix to avoid parasitic files in ZIPs: https://superuser.com/a/260264
|
|
export COPYFILE_DISABLE=1
|
|
|
|
zip -r ../btl2capfix.zip . -x \*.DS_Store \*__MACOSX \*DEBIAN ._\* .gitignore
|