vmcheck: rename build.sh to install.sh

I had meant for this to be in the other PR#968. I originally did both
`make` and `make install` there, but now it only does `make install`, so
let's just rename it to make that more obvious.

Closes: #953
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2017-09-01 16:35:52 -04:00 committed by Atomic Bot
parent c093a587a2
commit b22d7d764d
2 changed files with 2 additions and 2 deletions

View File

@ -68,12 +68,12 @@ check-local:
HOSTS ?= "vmcheck"
vmsync:
@env $(BASE_TESTS_ENVIRONMENT) ./tests/vmcheck/build.sh; \
@env $(BASE_TESTS_ENVIRONMENT) ./tests/vmcheck/install.sh; \
env $(BASE_TESTS_ENVIRONMENT) ./tests/vmcheck/sync.sh
vmoverlay:
@if [ -z "$(SKIP_VMOVERLAY)" ]; then \
env $(BASE_TESTS_ENVIRONMENT) ./tests/vmcheck/build.sh; \
env $(BASE_TESTS_ENVIRONMENT) ./tests/vmcheck/install.sh; \
echo -n "$(HOSTS)" | xargs -P 0 -n 1 -d ' ' -I {} \
env $(BASE_TESTS_ENVIRONMENT) VM={} \
./tests/vmcheck/overlay.sh; \