Former-commit-id:c7f349d5a5
[formerly9c26a31d27
] [formerlyac528037a1
] [formerlyc7f349d5a5
[formerly9c26a31d27
] [formerlyac528037a1
] [formerly73765c31ca
[formerlyac528037a1
[formerly 2565b4c918f9215fd65a5dc44778db3a200da8bf]]]] Former-commit-id:73765c31ca
Former-commit-id:772f68bbe4
[formerlybe8b2a480b
] [formerly 256e740af4db40ebc9aee9703b37df6292a84fff [formerlyc7040bce82
]] Former-commit-id: 51888b856816f07cc52eb276ede7075340f060c7 [formerly6a487942e9
] Former-commit-id:f746096b52
19 lines
791 B
Bash
19 lines
791 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
|
|
}
|