fdroid-docker-build/entrypoint

13 lines
234 B
Plaintext
Raw Normal View History

2018-06-24 01:36:45 -05:00
#!/bin/bash
REPO="$(pwd)"
export PATH="/opt/gradle/bin:$PATH"
2018-06-24 01:36:45 -05:00
if [ -d "fdroid" ]; then
cp -Rv fdroid/* /fdroiddata/metadata;
fi
cd /fdroiddata
find ./metadata -type f -name "*.txt" -exec sed -i "s:%REPO:$REPO:g" {} +
fdroid $@