Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
9ff44b50
Unverified
Commit
9ff44b50
authored
May 28, 2019
by
Oleg Gaidarenko
Committed by
GitHub
May 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build(makefile): improve error handling (#17281)
* Build(makefile): improve error handling Ref
baa55ab6
parent
1e508d72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
Makefile
+11
-2
No files found.
Makefile
View file @
9ff44b50
...
...
@@ -86,16 +86,25 @@ revive: scripts/go/bin/revive
# create docker-compose file with provided sources and start them
# example: make devenv sources=postgres,openldap
ifeq
($(sources),)
devenv
:
@
printf
'You have to define sources for this command \nexample: make devenv sources=postgres,openldap\n'
else
devenv
:
devenv-down
$
(
eval
targets :
=
$(
shell
echo
'
$(sources)
'
| tr
","
" "
)
)
@cd
devenv;
\
./create_docker_compose.sh
$(targets);
\
./create_docker_compose.sh
$(targets)
||
\
(rm
-rf
docker-compose.yaml;
exit
1)
@cd
devenv;
\
docker-compose
up
-d
endif
# drop down the envs
devenv-down
:
@
cd
devenv
;
docker-compose down
;
@
cd
devenv
;
\
docker-compose down
;
# TODO recheck the rules and leave only necessary exclusions
gosec
:
scripts/go/bin/gosec
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment