mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-04 20:06:27 +02:00
website: Fix makefile commands to quote command (#5559)
This commit is contained in:
parent
56b3fb337a
commit
ae9b0fbd6b
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user