mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

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."