We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062b910 commit 19dfd28Copy full SHA for 19dfd28
bin/push-javadoc.sh
@@ -2,13 +2,13 @@
2
# run from top level dir
3
4
ORG=failsafe-lib
5
-PROJECT=failsafe
+REPO=failsafe.dev
6
7
build () {
8
echo "Building javadocs"
9
mvn javadoc:javadoc -Djv=$apiVersion
10
rm -rf target/docs
11
- git clone [email protected]:$ORG/$PROJECT.git target/docs -b gh-pages
+ git clone [email protected]:$ORG/$REPO.git target/docs
12
cd target/docs
13
git rm -rf javadoc
14
mkdir -p javadoc
@@ -42,7 +42,7 @@ commit() {
42
echo "Committing javadocs"
43
git add -A -f javadoc
44
git commit -m "Updated JavaDocs"
45
- git push -fq origin gh-pages > /dev/null
+ git push -fq > /dev/null
46
}
47
48
build
0 commit comments