#!/bin/ksh
#
# publishall - publish the Fiper components to the library
#
# This differs from all the other Fiper programs - it does not run Java
# directly; instead it calls the 'fiper' command line with arguments.

dir=`command -v $0`
dir=`dirname $dir`
. "$dir/fiperenv"

# --- Publish all components to the library using cmd-line utility
"${dir}/fipercmd" publishall loglevel:info "$@"
