Skip to content

Commit b2240bd

Browse files
committed
Fixed "cleanall" command and adapted "vc" to have better output
1 parent 5e24bfd commit b2240bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install-requirements:
2525
rm -f .installed.cfg .mr.developer.cfg
2626
virtualenv -p python2 .
2727
bin/python bin/pip install -r requirements.txt
28-
# initilize CUSTOM_TMP directory
28+
# initialize CUSTOM_TMP directory
2929
mkdir -p -m 777 /tmp/appy
3030

3131
.PHONY: buildout
@@ -42,8 +42,8 @@ run: ## Runs buildout if needed and starts instance1 in foregroud
4242

4343
.PHONY: cleanall
4444
cleanall: ## Clears build artefacts and virtualenv
45-
if test -f var/zeoserver.pid; then kill -15 $(cat var/zeoserver.pid);fi
46-
if test -f var/instance1.pid; then kill -15 $(cat var/instance1.pid);fi
45+
if test -f var/zeoserver.pid; then kill -15 $(shell cat var/zeoserver.pid);fi
46+
if test -f var/instance1.pid; then kill -15 $(shell cat var/instance1.pid);fi
4747
rm -fr bin include lib local share develop-eggs downloads eggs parts .installed.cfg .mr.developer.cfg .git/hooks/pre-commit var/tmp
4848

4949
.PHONY: jenkins
@@ -82,7 +82,7 @@ test:
8282

8383
.PHONY: vc
8484
vc:
85-
bin/versioncheck -rbo checkversion.html
85+
bin/versioncheck -rnbpo checkversion.html
8686

8787
.PHONY: ctop
8888
ctop: ## Runs A CTop instance to monitor the running docker container.

0 commit comments

Comments
 (0)