#!/bin/bash # # This script prepares the update packages to include them into # pacman repository. # # $Id$ # #exec 2>/tmp/prepare_updates_trace$$.log #set -x scriptPath=${0%\/*} callPath=`pwd` cd $scriptPath if [ -f configuration.default.sh ] then # Load default configuration . configuration.default.sh else echo "Default configuration not found!" exit 1 fi if [ -f configuration.sh ] then # Load user configuration . configuration.sh fi # Load functions . functions_prepare_updates.sh # ---------------------------------------------------------------------------- # Show usage # ---------------------------------------------------------------------------- showUsage () { cat <