Use make variables instead of env variables
This commit is contained in:
parent
90901e588e
commit
48d77c9f21
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -107,7 +107,7 @@ testhost: require-docker
|
|||
@rm -rf /tmp/testhost
|
||||
@git show $(version):yadm > /tmp/testhost
|
||||
@chmod a+x /tmp/testhost
|
||||
@echo Starting testhost version=\"$$version\"
|
||||
@echo Starting testhost version=\"$(version)\"
|
||||
@docker run \
|
||||
-w /root \
|
||||
--hostname testhost \
|
||||
|
@ -122,7 +122,7 @@ scripthost: require-docker
|
|||
@rm -rf /tmp/testhost
|
||||
@git show $(version):yadm > /tmp/testhost
|
||||
@chmod a+x /tmp/testhost
|
||||
@echo Starting scripthost version=\"$$version\" \(recording script\)
|
||||
@echo Starting scripthost version=\"$(version)\" \(recording script\)
|
||||
@printf '' > script.gz
|
||||
@docker run \
|
||||
-w /root \
|
||||
|
|
Loading…
Reference in a new issue