File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ VERSION := $(shell git describe --tags --always --dirty)
121
121
endif
122
122
export VERSION
123
123
124
- export VERSION_PKG := $(shell go list -mod=mod ./internal/version)
124
+ export VERSION_PKG := $(shell go list -mod=mod ./../ internal/version)
125
125
126
126
export GIT_COMMIT := $(shell git rev-parse HEAD)
127
127
export GIT_VERSION := $(shell git describe --tags --always --dirty)
@@ -206,7 +206,8 @@ cert-manager:
206
206
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/${CERT_MGR_VERSION} /cert-manager.yaml
207
207
kubectl wait --for=condition=Available --namespace=cert-manager deployment/cert-manager-webhook --timeout=60s
208
208
209
- .PHONY : demo-update
209
+ # The demo script requires to install asciinema with: brew install asciinema to run on mac os envs.
210
+ .PHONY : demo-update # HELP build demo
210
211
demo-update :
211
212
hack/scripts/generate-asciidemo.sh
212
213
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ while getopts 'h' flag; do
36
36
done
37
37
set -u
38
38
39
- WKDIR=$( mktemp -td generate-asciidemo.XXXXX)
39
+ WKDIR=$( mktemp -d -t generate-asciidemo.XXXXX)
40
40
if [ ! -d ${WKDIR} ]
41
41
then
42
42
echo " unable to create temporary workspace"
You can’t perform that action at this time.
0 commit comments