awips2/rpms/build/common/usage.sh
Greg Armendariz 1a976cb67b Omaha #3215 - Add option for RPM build,
Change-Id: Ic3a50f9a493c9cd7b92ac99aeb026d3d991f69a5

Former-commit-id: 0806135d2e [formerly 265a455ca1] [formerly 0806135d2e [formerly 265a455ca1] [formerly a2e157ed35 [formerly 615c83cb701e3c8ddf7cbcc1c1fb735711771d3b]]]
Former-commit-id: a2e157ed35
Former-commit-id: db01c4b45e [formerly 81ca8ed4c6]
Former-commit-id: bdbdfdaa7a
2014-05-27 14:56:33 -05:00

19 lines
790 B
Bash

#!/bin/bash
# This script will just display the usage information.
function usage()
{
echo "Usage: $0 OPTION [-nobinlightning]"
echo " -delta perform a build of only the rpms that are likely to change."
echo " -full perform a full build of all the rpms."
echo " -ade build all rpms that are packaged in the ade."
echo " -viz only build the Viz rpms (CAVE & AlertViz)."
echo " -edex only build the EDEX rpms."
echo " -qpid build only the QPID rpms."
echo " -ldm build the awips2-ldm rpm; requires root privileges."
echo " -dev call functions directly
echo " -package create a yum repository tar file with the rpms that were just built."
echo " --help display this message and exit."
return 0
}