Created
April 30, 2015 14:58
-
-
Save RichardLitt/d668e99f9566dcf386fb to your computer and use it in GitHub Desktop.
Shell script for local node modules
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
| cd .. | |
| printf 'cd to' && pwd | |
| echo 'Cloning BeagleLab/beagle-style' | |
| git clone git@github.com:BeagleLab/beagle-style.git | |
| cd beagle-style | |
| echo 'Installing modules...' | |
| npm install | |
| cd .. | |
| echo 'Cloning BeagleLab/beagle-pdf' | |
| git clone git@github.com:BeagleLab/beagle-pdf.git | |
| cd beagle-pdf | |
| echo 'Installing modules...' | |
| npm install | |
| echo 'Set up symlinks...' | |
| cd ../beagle/node_modules | |
| printf 'cd to' && pwd | |
| ln -s ../../beagle-style | |
| ln -s ../../beagle-pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment