| ... | ... |
@@ -1,16 +1,16 @@ |
| 1 | 1 |
#!/usr/bin/env bash |
| 2 | 2 |
|
| 3 |
-# echo commands |
|
| 3 |
+# Echo commands |
|
| 4 | 4 |
set -o xtrace |
| 5 | 5 |
|
| 6 |
-# exit on error to stop unexpected errors |
|
| 6 |
+# Exit on error to stop unexpected errors |
|
| 7 | 7 |
set -o errexit |
| 8 | 8 |
|
| 9 | 9 |
# Keep track of the current directory |
| 10 | 10 |
TOOLS_DIR=$(cd $(dirname "$0") && pwd) |
| 11 | 11 |
TOP_DIR=`cd $TOOLS_DIR/..; pwd` |
| 12 | 12 |
|
| 13 |
-# cd to top of devstack |
|
| 13 |
+# Change dir to top of devstack |
|
| 14 | 14 |
cd $TOP_DIR |
| 15 | 15 |
|
| 16 | 16 |
# Echo usage |