mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-01-28 22:01:50 +00:00
12 lines
446 B
Bash
Executable File
12 lines
446 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
|
|
curl -L -o ./radare2-5.9.9-android-aarch64.tar.gz "https://hc-cdn.hel1.your-objectstorage.com/s/v3/25e8dbfe13892b4c26f3e01bfa45197f170bb0e7_radare2-5.9.9-android-aarch64.tar.gz"
|
|
zip -r ../btl2capfix.zip . -x \*.DS_Store \*__MACOSX \*DEBIAN ._\* .gitignore
|