[#172] Fix grep: warning: stray \ before #
https://lists.gnu.org/archive/html/info-gnu/2022-09/msg00001.html Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
5dc86e2aac
commit
f55dc15476
1 changed files with 6 additions and 6 deletions
12
Makefile
12
Makefile
|
@ -20,12 +20,12 @@ include services/*/artifacts.mk
|
|||
include services/*/prepare.mk
|
||||
|
||||
# List of services to run
|
||||
START_SVCS = $(shell cat .services | grep -v \\\#)
|
||||
START_BASIC = $(shell cat .basic_services | grep -v \\\#)
|
||||
START_BOOTSTRAP = $(shell cat .bootstrap_services | grep -v \\\#)
|
||||
STOP_SVCS = $(shell tac .services | grep -v \\\#)
|
||||
STOP_BASIC = $(shell tac .basic_services | grep -v \\\#)
|
||||
STOP_BOOTSTRAP = $(shell tac .bootstrap_services | grep -v \\\#)
|
||||
START_SVCS = $(shell cat .services | grep -v '#')
|
||||
START_BASIC = $(shell cat .basic_services | grep -ve '#')
|
||||
START_BOOTSTRAP = $(shell cat .bootstrap_services | grep -v '#')
|
||||
STOP_SVCS = $(shell tac .services | grep -v '#')
|
||||
STOP_BASIC = $(shell tac .basic_services | grep -v '#')
|
||||
STOP_BOOTSTRAP = $(shell tac .bootstrap_services | grep -v '#')
|
||||
|
||||
# Enabled services dirs
|
||||
ENABLED_SVCS_DIRS = $(shell echo "${START_BOOTSTRAP} ${START_BASIC} ${START_SVCS}" | sed 's|[^ ]* *|./services/&|g')
|
||||
|
|
Loading…
Reference in a new issue