#!/bin/sh # # Simple shell script used to re-generate/update all of the pacman files in the ACF cache. # # Remove the old pacman files: CMD="rm *.pacman" echo echo Exec: $CMD $CMD # Make the pacman files for the edg-mkgridmap package and its dependencies now: CMD="./rpm2pacman.pl mkgridmap/*.rpm" echo echo Exec: $CMD $CMD # # End file. #