Created
January 18, 2018 02:40
-
-
Save rankun203/484ec62e7509e719869256213787de5b 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
#!/usr/bin/env bash | |
# Check local dev | |
check_command() { | |
WHERE=`whereis $1` | |
TIP=$2 | |
if [[ -z "${WHERE}" ]]; then | |
echo "$1 is required, ${TIP}" | |
else | |
return | |
fi | |
} | |
check_command git 'apt install git' | |
check_command postcss 'npm i -g postcss-cli' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment