fix some comments
This commit is contained in:
parent
8655bf0e6e
commit
208ae2f6aa
1 changed files with 3 additions and 3 deletions
|
@ -1,16 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# echo commands
|
# Echo commands
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
|
|
||||||
# exit on error to stop unexpected errors
|
# Exit on error to stop unexpected errors
|
||||||
set -o errexit
|
set -o errexit
|
||||||
|
|
||||||
# Keep track of the current directory
|
# Keep track of the current directory
|
||||||
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
||||||
TOP_DIR=`cd $TOOLS_DIR/..; pwd`
|
TOP_DIR=`cd $TOOLS_DIR/..; pwd`
|
||||||
|
|
||||||
# cd to top of devstack
|
# Change dir to top of devstack
|
||||||
cd $TOP_DIR
|
cd $TOP_DIR
|
||||||
|
|
||||||
# Echo usage
|
# Echo usage
|
||||||
|
|
Loading…
Reference in a new issue