Merge "Fix typos in coreos-image-builder"

This commit is contained in:
Jenkins 2015-05-25 16:01:48 +00:00 committed by Gerrit Code Review
commit f4dd2e933e
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
containers=$(docker ps -a -q)
images=$(docker images -q)
# All the docker commands followed by || true because occassionally docker
# All the docker commands followed by || true because occasionally docker
# will fail to remove an image or container, & I want make to keep going anyway
if [[ ! -z "$containers" ]]; then
docker rm $containers || true

View File

@ -89,7 +89,7 @@ if [ -z "$KERNEL" ]; then
exit 1
fi
# Create a temporary build directory for holiding the contents of iso
# Create a temporary build directory for holding the contents of iso
TMP_IMAGE_DIR="$TMP_BUILD_DIR/image"
v_print "Creating temporary directory $TMP_IMAGE_DIR"
mkdir -p "$TMP_IMAGE_DIR"