mirror of
https://github.com/PurpleI2P/i2pd-android.git
synced 2025-02-03 18:34:20 +00:00
binary pack: fix paths
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
0ead601868
commit
3dbb4e9759
@ -27,22 +27,22 @@ fi
|
|||||||
# Prepare files for package
|
# Prepare files for package
|
||||||
mkdir archive
|
mkdir archive
|
||||||
|
|
||||||
if [ ! -d "../binary/libs/" ]; then
|
if [ ! -d "../../binary/libs/" ]; then
|
||||||
echo "Prebuilt binaries folder is not found. Have you built them?"
|
echo "Prebuilt binaries folder is not found. Have you built them?"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for ABI in "${!ABILIST[@]}"; do
|
for ABI in "${!ABILIST[@]}"; do
|
||||||
if [ -f "../binary/libs/${ABI}/i2pd" ]; then
|
if [ -f "../../binary/libs/${ABI}/i2pd" ]; then
|
||||||
cp ../binary/libs/${ABI}/i2pd archive/i2pd-${ABILIST[$ABI]}
|
cp ../../binary/libs/${ABI}/i2pd archive/i2pd-${ABILIST[$ABI]}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
cp i2pd archive/i2pd
|
cp i2pd archive/i2pd
|
||||||
cp -rH ../app/src/main/assets/certificates archive/
|
cp -rH ../../app/src/main/assets/certificates archive/
|
||||||
cp -rH ../app/src/main/assets/tunnels.conf.d archive/
|
cp -rH ../../app/src/main/assets/tunnels.conf.d archive/
|
||||||
cp -H ../app/src/main/assets/i2pd.conf archive/
|
cp -H ../../app/src/main/assets/i2pd.conf archive/
|
||||||
cp -H ../app/src/main/assets/tunnels.conf archive/
|
cp -H ../../app/src/main/assets/tunnels.conf archive/
|
||||||
|
|
||||||
# Compress files
|
# Compress files
|
||||||
cd archive
|
cd archive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user