Commit a264d54e authored by Vitaly Lipatov's avatar Vitaly Lipatov

add initial grpmbph (does not work)

parent b1621fbb
#!/bin/sh
# load common functions, compatible with local and installed script
. `dirname $0`/../share/eterbuild/functions/common
load_mod git
set_girar_host $1 && shift
if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then
echo "grpmbph - multi repo rpmbsh analogue (build packages in hasher)"
echo "Usage: grpmbph [GIRAR] package1... package2..."
# FIXME: concatenate grpmbsh and grpmbs
#echo "Options:"
#echo " -a - build all packages in one task"
#echo " -u - build packages separately (one package per task)"
#echo " -f - force set tags (see rpmbs)"
exit 1
fi
for i in "$@" ; do
docmd cd $i || fatal "Please run in dir with '$i' subdirectory."
docmd rpmbph $GIRARHOST || fatal
cd -
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment