Revision 116d56ad6b6a3d8022ca4b6a3695379940e0789f authored by dependabot[bot] on 15 June 2021, 06:52:48 UTC, committed by Joe Stringer on 15 June 2021, 18:28:02 UTC
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 2.10.1 to 2.10.2.
- [Release notes](https://github.com/dorny/paths-filter/releases)
- [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dorny/paths-filter/compare/78ab00f87740f82aec8ed8826eb4c3c851044126...b2feaf19c27470162a626bd6fa8438ae5b263721)

---
updated-dependencies:
- dependency-name: dorny/paths-filter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
1 parent a6771b9
Raw File
Makefile
# Copyright 2017-2019 Authors of Cilium
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

include ../Makefile.defs

# Dockerfile builds require special options
ifdef PKG_BUILD

all:
	@echo "  SKIP  $(RELATIVE_DIR)/"
	@echo "cilium-envoy has been moved to github.com/cilium/proxy"

install:
	@echo "cilium-envoy must be installed separately"

install-binary: install

install-bash-completion:

clean:

else

all:
	@echo "  SKIP  $(RELATIVE_DIR)/"
	@echo "cilium-envoy has been moved to github.com/cilium/proxy"

install:
ifndef DISABLE_ENVOY_INSTALLATION
	docker create -ti --name cilium-envoy $(CILIUM_ENVOY_REF) bash
	docker cp cilium-envoy:/usr/bin/cilium-envoy $(BINDIR)/cilium-envoy
	docker rm -fv cilium-envoy
endif

install-binary: install

install-bash-completion:

clean:

endif
back to top