Created
February 7, 2016 12:11
-
-
Save monnoval/b9583672749f3f5fe690 to your computer and use it in GitHub Desktop.
Bash script to start a new project using Bare wordpress starter theme
This file contains hidden or 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
#! /bin/bash | |
echo -n "Name of your theme: " | |
read -e THEME | |
git clone --depth=1 [email protected]:msnoval/bare.git $THEME | |
cd ${THEME} | |
rm -rf .git | |
npm install gulp -g | |
npm install bower -g | |
npm install | |
gulp --start $THEME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment