-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit_env.sh
executable file
·62 lines (46 loc) · 1.06 KB
/
init_env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash -e
cd `dirname $0`
source _repos.sh
ROOT=$(abspath `pwd`)
BASE=$(abspath $ROOT/..)
CLONE_ROOT="https://github.com/firstwiki"
if gem list -i github-pages > /dev/null; then
echo "github-pages gem already installed"
else
echo "Initializing ruby environment"
gem install bundler
bundle install
fi
cd ..
echo "Linking dev.sh"
# setup dev script
if [ ! -f dev.sh ]; then
ln -s "$ROOT"/dev.sh dev.sh
fi
echo "Cloning git repositories"
for repo in $ALL_REPOS; do
if [ ! -d $repo ]; then
git clone $CLONE_ROOT/$repo
pushd $repo
git submodule init
git submodule update
popd
fi
done
echo "Clones complete."
# Create _site directory that contains everything
if [ ! -d _site ]; then
echo "Creating combined _site directory"
mkdir _site
for repo in $REPOS; do
if [ "$repo" != "firstwiki.github.io" ]; then
ln -s "$BASE"/$repo/_site _site/$repo
fi
done
# special case.. TODO, make less special
SPECIAL="common docs news search index.html 404.html"
for s in $SPECIAL; do
ln -s "$BASE"/firstwiki.github.io/_site/$s _site/$s
done
fi
echo "Done."