Use make variables instead of env variables

This commit is contained in:
Tim Byrne 2020-10-10 18:12:51 -05:00
parent 90901e588e
commit 48d77c9f21
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
1 changed files with 2 additions and 2 deletions

View File

@ -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 \