Created
January 13, 2021 15:24
-
-
Save luismayta/63eadbab77e835adc93356f01740e1f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# See ./CONTRIBUTING.rst | |
# | |
.PHONY: keybase.help | |
keybase.help: | |
@echo ' keybase:' | |
@echo '' | |
@echo ' keybase help keybase' | |
@echo ' keybase.environment Enviroment path for keybase' | |
@echo ' keybase.setup Setup dependences for keybase' | |
@echo '' | |
keybase: | |
make keybase.help | |
keybase.environment: | |
@echo "=====> make environment for ${TEAM}..." | |
mkdir -p ${KEYBASE_PROJECT_PATH}/{staging,prod,dev,core}/{pem,private,password,pub,openssl} | |
@echo ${MESSAGE_HAPPY} | |
keybase.setup: | |
@echo "=====> make dependences for ${TEAM}..." | |
mkdir -p ${KEYBASE_PROJECT_PATH}/{staging,prod,dev,core}/{pem,private,password,pub,openssl} | |
@echo ${MESSAGE_HAPPY} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment