Skip to content

Commit

Permalink
unsilence makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Gatto <[email protected]>
  • Loading branch information
outscale-mgo committed Feb 20, 2024
1 parent 3c5bf5f commit 161a3be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ HASHICORP_PACKER_PLUGIN_SDK_VERSION?=$(shell go list -m github.com/hashicorp/pac
.PHONY: dev

build:
@go build -o ${BINARY}
go build -o ${BINARY}

dev: build
@mkdir -p ~/.packer.d/plugins/
Expand All @@ -27,9 +27,9 @@ testacc: dev
@PACKER_ACC=1 go test -count $(COUNT) -v $(TEST) -timeout=120m

generate: install-packer-sdc
@go generate ./...
@if [ -d ".docs" ]; then rm -r ".docs"; fi
go generate ./...
if [ -d ".docs" ]; then rm -r ".docs"; fi
packer-sdc renderdocs -src "docs" -partials docs-partials/ -dst ".docs/"
@./.web-docs/scripts/compile-to-webdocs.sh "." ".docs" ".web-docs" "outscale"
@rm -r ".docs"
./.web-docs/scripts/compile-to-webdocs.sh "." ".docs" ".web-docs" "outscale"
rm -r ".docs"
# checkout the .docs folder for a preview of the docs

0 comments on commit 161a3be

Please sign in to comment.