Merge pull request #3795 from owncloud/which-to-command-v

use command -v instead of which
This commit is contained in:
Willy Kloucek
2022-05-16 08:08:14 +02:00
committed by GitHub
33 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ WEB_ASSETS_VERSION = v5.5.0-rc.6
include ../../.make/recursion.mk
############ tooling ############
ifneq (, $(shell which go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
include ../../.bingo/Variables.mk
endif