Skip to content

Commit 00bfa7e

Browse files
authored
fix: makefile build.requirements target had conditional in wrong place (#1206)
1 parent 09f11c3 commit 00bfa7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ lint.check:
9393
build.requirements:
9494
# If make was given a different requirements tag, we assume a suitable image
9595
# was already built (e.g. by umbrella) and don't want to build this one.
96-
ifneq (${REQUIREMENTS_TAG},${DEFAULT_REQS_TAG})
96+
ifneq (${REQUIREMENTS_TAG},${DEFAULT_REQS_TAG})
9797
echo "Error: building worker reqs image despite another being provided"
9898
exit 1
99-
endif
99+
endif
100100
# if docker pull succeeds, we have already build this version of
101101
# requirements.txt. Otherwise, build and push a version tagged
102102
# with the hash of this requirements.txt

0 commit comments

Comments
 (0)