Commit 994953fe authored by Hans-Christoph Steiner's avatar Hans-Christoph Steiner
Browse files

reproducible_fdroid: include correct path for debug files

parent a7869e93
...@@ -44,13 +44,15 @@ cleanup_all() { ...@@ -44,13 +44,15 @@ cleanup_all() {
echo "$(date -u) - cleanup in progress..." echo "$(date -u) - cleanup in progress..."
killall adb killall adb
killall gpg-agent killall gpg-agent
git -C $WORKSPACE/fdroiddata status fdroiddata=$WORKSPACE/fdroiddata
git -C $fdroiddata status
jobtmpdir=/tmp/$(basename $0)-$(date +%s)/ jobtmpdir=/tmp/$(basename $0)-$(date +%s)/
mkdir $jobtmpdir mkdir $jobtmpdir
for f in `git status | sed -En 's,\s+modified:\s+,,p'`; do for f in `git -C $fdroiddata status | sed -En 's,\s+modified:\s+,,p'`; do
test -e $f || continue path=$fdroiddata/$f
ls -l $f test -e $path || continue
cp -a $f $jobtmpdir ls -l $path
cp -a $path $jobtmpdir
done done
echo "$(date -u) - cleanup done." echo "$(date -u) - cleanup done."
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment