Skip to content
Snippets Groups Projects
Commit 5a550bac authored by Cam Saül's avatar Cam Saül
Browse files

clarify comments in ./build-uberjar

parent d6b7a429
No related branches found
No related tags found
No related merge requests found
......@@ -45,9 +45,15 @@ all() {
version && frontend && sample-dataset && uberjar
}
# Default to running all but let someone specify if desired
if [ $1 ]; then
$1
# Default to running all but let someone specify one or more sub-tasks to run instead if desired
# e.g.
# ./build-uberjar # do everything
# ./build-uberjar version # just update version.properties
# ./build-uberjar version uberjar # just update version.properties and build uberjar
if [ "$1" ]; then
for cmd in "$@"; do
$cmd
done
else
all
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment