curl "https://raw.githubusercontent.com/yhttp/yhttp-deploy/master/install.sh" | sudo shOr
cd yhttp-deploy
sudo make install
sudo make install PREFIX=/optCreate a Makefile in your project's root:
# Assert the yhttp-deploy version
YHTTP_DEPLOY_VERSION_REQUIRED = 1.0.1
# Ensure the yhttp-deploy is installed
YHTTP_DEPLOY_PATH = /usr/local/lib/yhttp-deploy
ifeq ("", "$(wildcard $(YHTTP_DEPLOY_PATH))")
MAKELIB_URL = https://github.com/yhttp/yhttp-deploy
$(error yhttp-deploy is not installed. see "$(MAKELIB_URL)")
endif