Last active
February 19, 2016 19:06
-
-
Save signalpoint/e828b75914b8c956807b to your computer and use it in GitHub Desktop.
drupalgap.org
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 "Installing jsdoc" | |
| npm install jsdoc | |
| echo "Installing DrupalGap 7" | |
| mkdir 7 | |
| cd 7 | |
| git clone --branch 7.x-1.x [email protected]:signalpoint/DrupalGap.git | |
| git clone --branch development [email protected]:signalpoint/daux.io.git | |
| mv daux.io docs | |
| cd docs | |
| ln -s ../DrupalGap/docs docs | |
| cd ../.. | |
| echo "Installing DrupalGap 8" | |
| mkdir 8 | |
| cd 8 | |
| git clone --branch 8.x-1.x [email protected]:signalpoint/DrupalGap.git | |
| git clone --branch development [email protected]:signalpoint/daux.io.git | |
| mv daux.io docs | |
| cd docs | |
| ln -s ../DrupalGap/docs docs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment