Fix typos in coreos-image-builder

Change-Id: Ic7f7ebf3290051836243467109a1ba7adc982f44
This commit is contained in:
Mitsuhiro SHIGEMATSU 2015-05-15 03:57:24 +09:00
parent e92e41b937
commit 6b967afcf8
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"