trovestack: Better error message for missing arg
Instead of assuming the user knows to specify a datastore for kick-start and run-ci, we should throw an error and provide guidance on what to do. Change-Id: I5d4f73ff891df948f95f8dc2e3faae7c93a9f247
This commit is contained in:
parent
b61b80786d
commit
63ff364207
@ -1095,6 +1095,12 @@ function cmd_vagrant_ssh() {
|
||||
|
||||
function cmd_run_ci() {
|
||||
exclaim "Running CI suite..."
|
||||
|
||||
if [ -z $1 ]; then
|
||||
exclaim "Datastore argument was not specified."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set +e
|
||||
cmd_stop_deps
|
||||
cmd_stop
|
||||
@ -1207,6 +1213,11 @@ function cmd_clean() {
|
||||
}
|
||||
|
||||
function cmd_kick_start() {
|
||||
if [ -z $1 ]; then
|
||||
exclaim "Datastore argument was not specified."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cmd_test_init $1
|
||||
cmd_build_and_upload_image $1
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user