awips2/rpms/build/common/usage.sh
Bryan Kowal c152d7678f Issue - Merge branch thunder:8-64Bit (OB12.6.1-10) into AWIPS2_baseline:merge_development
Former-commit-id: 2acacb211a [formerly c629f18f24] [formerly 99d22f395a] [formerly 2acacb211a [formerly c629f18f24] [formerly 99d22f395a] [formerly f92eb59a73 [formerly 99d22f395a [formerly cb9c284220bb65f5e2f212a27a03def7aed29480]]]]
Former-commit-id: f92eb59a73
Former-commit-id: 76ee9afb3f [formerly 8d64fdba2c] [formerly 52cad006ad06844a2b34006f7defa2ec2dc2d67f [formerly 580172b47c]]
Former-commit-id: 3ef9b4970b7c7eec89ff3c64f7174952b28b4ded [formerly 212afcceea]
Former-commit-id: 5b4c392e7f
2012-07-10 16:57:16 -05:00

18 lines
744 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 " -package create a yum repository tar file with the rpms that were just built."
echo " --help display this message and exit."
return 0
}