website: Fix makefile commands to quote command (#5559)

This commit is contained in:
Mitchell Hashimoto 2018-10-19 11:46:36 -07:00 committed by GitHub
parent 56b3fb337a
commit ae9b0fbd6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
configure-cache:
mkdir -p tmp/cache
@mkdir -p tmp/cache
build: configure-cache
@echo "==> Starting build in Docker..."
@ -11,7 +11,7 @@ build: configure-cache
--volume "$(shell pwd)/tmp/cache:/opt/buildhome/cache" \
--env "ENV=production" \
netlify/build \
build sh bootstrap.sh && middleman build --verbose
build "sh bootstrap.sh && middleman build --verbose"
website: configure-cache
@echo "==> Starting website in Docker..."
@ -25,6 +25,6 @@ website: configure-cache
--publish "35729:35729" \
--env "ENV=production" \
netlify/build \
build sh bootstrap.sh && middleman
build "sh bootstrap.sh && middleman"
.PHONY: configure-cache build website