Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
executable file 25 lines (18 sloc) 443 Bytes
#!/bin/bash
echo "Initializing Submodules . . ."
git submodule init
git submodule update
echo "modules ready"
echo "Selecting branches"
cd wiki-master
git checkout master
echo "master checked out"
cd ../wiki-gh-pages
git checkout gh-pages
echo "gh-pages checked out"
cd ..
chmod 744 *.sh
echo "permissions set"
echo "Installing NPM modules"
npm install
echo "installation process finished, please check for possible errors or warnings"
Something went wrong with that request. Please try again.