[#192] Sort and exclude duplicates of make env
output
Signed-off-by: anastasia prasolova <anastasia@nspcc.ru>
This commit is contained in:
parent
59c238fa0e
commit
7448e2e777
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -39,7 +39,7 @@ MORPH_CHAIN_PROTOCOL = './services/morph_chain/protocol.privnet.yml'
|
|||
CHAIN_PROTOCOL = './services/chain/protocol.privnet.yml'
|
||||
|
||||
# List of grepped environment variables from *.env
|
||||
GREP_DOTENV = $(shell find . -name '*.env' -exec grep -rhv -e '^\#' -e '^$$' {} + )
|
||||
GREP_DOTENV = $(shell find . -name '*.env' -exec grep -rhv -e '^\#' -e '^$$' {} + | sort -u )
|
||||
|
||||
# Pull all required Docker images
|
||||
.PHONY: pull
|
||||
|
|
Loading…
Reference in a new issue