forked from rsyslog/rsyslog-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·27 lines (24 loc) · 829 Bytes
/
build.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
#!/bin/sh
echo "This script is intended to run with the clean repo version of the code."
echo "Run the sphinx-build command manually if you want to see your uncommited changes."
echo "If you run this command with uncommitted and un-pushed changes, you will lose those changes,"
echo "or end up with merge conflicts."
echo ""
echo "Press Enter to continue or Ctrl-C to cancel...."
read
MASTERBRANCH=v8-devel
for version in $(git branch | cut -c3-)
do
ver=$MASTERBRANCH
[ "$version" = master ] || ver=$version
echo "Checkout Branch $version"
git checkout $version
echo "Fetch Branch $version"
git fetch origin $version
echo "Reset Branch $version"
git reset --hard
echo "Pull Branch $version"
git pull origin $version
echo "Build $version"
sphinx-build -b html source $ver
done