Change-Id: Ic3a50f9a493c9cd7b92ac99aeb026d3d991f69a5 Former-commit-id:0806135d2e
[formerly265a455ca1
] [formerly0806135d2e
[formerly265a455ca1
] [formerlya2e157ed35
[formerly 615c83cb701e3c8ddf7cbcc1c1fb735711771d3b]]] Former-commit-id:a2e157ed35
Former-commit-id:db01c4b45e
[formerly81ca8ed4c6
] Former-commit-id:bdbdfdaa7a
19 lines
790 B
Bash
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
|
|
}
|