File: deploy-website.sh

package info (click to toggle)
easymock 4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,772 kB
  • sloc: java: 14,671; xml: 2,366; sh: 144; makefile: 4
file content (38 lines) | stat: -rwxr-xr-x 895 bytes parent folder | download | duplicates (3)
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
#!/bin/bash

# to exit in case of error
set -e

# make sure the script is launched from the project root directory
if [ "$(dirname $0)" != "." ]; then
    echo "The script should be launched from EasyMock root directory"
    exit 1
fi

# clone the website branch
echo "************** CLONE ************************"
git clone --depth=1 --branch gh-pages git@github.com:easymock/easymock.git site

pushd site

# delete all none hidden directories (keep .git for instance)
ls -1 | xargs rm -rf

# copy the new site to the branch
cp -R ../website/* .

# to help debugging in case of issue
echo "************** STATUS************************"
git status

# push the site
echo "************** COMMIT ***********************"
git add --ignore-removal .
git commit -m "from master $(git log | head -n 1)"

echo "************** PUSH ************************"
git push origin gh-pages

popd

rm -rf site