diff --git a/coreos/docker_clean.bash b/coreos/docker_clean.bash index 091c899..8b33850 100755 --- a/coreos/docker_clean.bash +++ b/coreos/docker_clean.bash @@ -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 diff --git a/coreos/iso-image-create b/coreos/iso-image-create index da17868..5f2cdb4 100755 --- a/coreos/iso-image-create +++ b/coreos/iso-image-create @@ -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"