rename ROOT var to CS_ROOT (#1755)

This commit is contained in:
blotus 2022-09-15 17:12:29 +02:00 committed by GitHub
parent 1f06f242cc
commit 1ba6c67ff2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
ifeq ($(OS), Windows_NT)
SHELL := pwsh.exe
.SHELLFLAGS := -NoProfile -Command
ROOT = $(shell (Get-Location).Path)
CS_ROOT = $(shell (Get-Location).Path)
SYSTEM = windows
EXT = .exe
else
ROOT ?= $(shell pwd)
CS_ROOT ?= $(shell pwd)
SYSTEM ?= $(shell uname -s | tr '[A-Z]' '[a-z]')
endif
@ -17,7 +17,7 @@ else
endif
ifneq ($(OS), Windows_NT)
include $(ROOT)/platform/unix_common.mk
include $(CS_ROOT)/platform/unix_common.mk
endif
CROWDSEC_FOLDER = ./cmd/crowdsec
@ -93,7 +93,7 @@ ifneq ($(OS), Windows_NT)
fi
else
# This needs Set-ExecutionPolicy -Scope CurrentUser Unrestricted
@$(ROOT)/scripts/check_go_version.ps1 $(MINIMUM_SUPPORTED_GO_MAJOR_VERSION) $(MINIMUM_SUPPORTED_GO_MINOR_VERSION)
@$(CS_ROOT)/scripts/check_go_version.ps1 $(MINIMUM_SUPPORTED_GO_MAJOR_VERSION) $(MINIMUM_SUPPORTED_GO_MINOR_VERSION)
endif
.PHONY: clean