Skip to content

Commit

Permalink
Fix dev build condition
Browse files Browse the repository at this point in the history
  • Loading branch information
bobf committed Mar 28, 2021
1 parent 7c53ed2 commit 04e2d9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ build:

.PHONY: push
push:
ifneq (1,$(dev))
$(MAKE) push-dev
ifeq (1,$(dev))
docker push skep/agent:dev
docker push skep/monitor:dev
docker push skep/app:dev
Expand Down
1 change: 0 additions & 1 deletion app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ all:
mkdir -p .build/
ifeq (${dev},1)
cp Dockerfile Pipfile Pipfile.lock .build/
rm -f .build/build.tar
tar zcf .build/build.tar --exclude build.tar --exclude .build --exclude node_modules .
cp -r ../shared/skep .build/skep
cd .build/ && docker build . -t skep/app:dev
Expand Down

0 comments on commit 04e2d9f

Please sign in to comment.