Spellcheck: SC2002 useless cat

This commit is contained in:
Nick Schonning 2017-06-14 02:59:02 -04:00
parent d2d0efe69c
commit 19d6c12219
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ for version in "${versions[@]}"; do
# Skip "docs" and other non-docker directories
[ -f "$version/Dockerfile" ] || continue
tag=$(cat "$version/Dockerfile" | grep "ENV NODE_VERSION" | cut -d' ' -f3)
tag=$(grep "ENV NODE_VERSION" "$version/Dockerfile" | cut -d' ' -f3)
info "Building $tag..."