Initial checkin of Pika from heckimp

This commit is contained in:
2023-09-25 15:35:21 -07:00
commit 891e999216
6761 changed files with 5240685 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/bash
pushd checkout
rm -rf *-*/
find . -maxdepth 1 -type f -atime +25 -print -delete
for gitdir in babl gegl pika; do
pushd $gitdir
git clean -xdf
popd
done
popd
if [[ "$1" != "--skip-targets" ]]; then
echo "Cleaning targets"
rm -rf targets/*
fi