File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
# ##########################
2
2
# Configuration Variables #
3
3
# ##########################
4
+ # Setting SHELL to bash allows bash commands to be executed by recipes.
5
+ # Options are set to exit when a recipe line exits non-zero or a piped command fails.
6
+ SHELL := /usr/bin/env bash -o pipefail
7
+ .SHELLFLAGS := -ec
8
+
4
9
# Image URL to use all building/pushing image targets
5
10
ifeq ($(origin IMAGE_REPO ) , undefined)
6
11
IMAGE_REPO := quay.io/operator-framework/operator-controller
@@ -14,7 +19,6 @@ export IMAGE_TAG
14
19
15
20
IMG := $(IMAGE_REPO ) :$(IMAGE_TAG )
16
21
17
-
18
22
# Define dependency versions (use go.mod if we also use Go code from dependency)
19
23
export CERT_MGR_VERSION := v1.9.0
20
24
export CATALOGD_VERSION := $(shell go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/catalogd)
51
55
52
56
KUSTOMIZE_BUILD_DIR := config/default
53
57
54
- # Setting SHELL to bash allows bash commands to be executed by recipes.
55
- # Options are set to exit when a recipe line exits non-zero or a piped command fails.
56
- SHELL := /usr/bin/env bash -o pipefail
57
- .SHELLFLAGS := -ec
58
-
59
58
# Disable -j flag for make
60
59
.NOTPARALLEL :
61
60
You can’t perform that action at this time.
0 commit comments