Skip to content

Commit

Permalink
Merge pull request #3304 from pachyderm/fix-echoes
Browse files Browse the repository at this point in the history
Fix echo in Makefile
  • Loading branch information
ysimonson committed Dec 21, 2018
2 parents d0bf278 + b1099de commit 09240db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ launch-kube: check-kubectl
launch-dev-vm: check-kubectl
@# Make sure the caller sets address to avoid confusion later
@if [ -z "${ADDRESS}" ]; then \
echo -e "Must set ADDRESS\nRun:\nexport ADDRESS=192.168.99.100:30650"; \
$$( which echo ) -e "Must set ADDRESS\nRun:\nexport ADDRESS=192.168.99.100:30650"; \
exit 1; \
fi
@if [ -n "${PACH_CA_CERTS}" ]; then \
echo -e "Must unset PACH_CA_CERTS\nRun:\nunset PACH_CA_CERTS"; \
$$( which echo ) -e "Must unset PACH_CA_CERTS\nRun:\nunset PACH_CA_CERTS"; \
exit 1; \
fi
# Making sure minikube isn't still up from a previous run...
Expand All @@ -332,11 +332,11 @@ launch-dev-vm: check-kubectl
launch-release-vm:
@# Make sure the caller sets address to avoid confusion later
@if [ -z "${ADDRESS}" ]; then \
echo -e"Must set ADDRESS\nRun:\nexport ADDRESS=192.168.99.100:30650"; \
$$( which echo ) -e "Must set ADDRESS\nRun:\nexport ADDRESS=192.168.99.100:30650"; \
exit 1; \
fi
@if [ -n "${PACH_CA_CERTS}" ]; then \
echo -e"Must unset PACH_CA_CERTS\nRun:\nunset PACH_CA_CERTS"; \
$$( which echo ) -e "Must unset PACH_CA_CERTS\nRun:\nunset PACH_CA_CERTS"; \
exit 1; \
fi
# Making sure minikube isn't still up from a previous run...
Expand Down

0 comments on commit 09240db

Please sign in to comment.