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

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