mirror of the now-defunct rocklinux.org
 
 
 
 
 
 

11 lines
317 B

#!/bin/sh
echo "Updating packages in the e17 repository to version date $(date --date '-1 day' '+%Y-%m-%d')"
for pkg in $(cd package/e17; echo *); do
if [ -x "package/e17/$pkg" ]; then
./scripts/Create-PkgUpdPatch $pkg-$(date --date '-1 day' '+%Y-%m-%d') | patch -p0 -bz.orig
fi
done
echo "Updated done."