Skip to content
Snippets Groups Projects
Commit 94633e30 authored by Stephen C Phillips's avatar Stephen C Phillips
Browse files

Describes defaults in usage text

parent b3bc6289
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
repo_root="/vagrant"
config_file="rspec.json"
usage() { usage() {
echo "Usage: $0 create|start|stop|destroy [-f config_file] [-r repo_root] [-c container_name|all]" 1>&2 echo "Usage: $0 create|start|stop|destroy [-f config_file] [-r repo_root] [-c container_name|all]" 1>&2
echo " -f defaults to '${config_file}'" 1>&2
echo " -r defaults to '${repo_root}'" 1>&2
echo " -c must be specified, use 'all' for all" 1>&2
exit 1 exit 1
} }
...@@ -154,9 +160,6 @@ if [ $# -gt 1 ]; then ...@@ -154,9 +160,6 @@ if [ $# -gt 1 ]; then
OPTIND=$((OPTIND+1)) OPTIND=$((OPTIND+1))
fi fi
repo_root="/vagrant"
config_file="rspec.json"
# collect the optional arguments # collect the optional arguments
while getopts "hf:r:c:" opt; do while getopts "hf:r:c:" opt; do
case $opt in case $opt in
......
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