We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5fc4c commit 5fd64acCopy full SHA for 5fd64ac
upload-documentation.sh
@@ -80,7 +80,10 @@ if [[ $RELEASE_VERSION =~ .*\.Final ]]; then
80
exit 1
81
fi
82
83
- scp ${PROJECT}-updated.json filemgmt.jboss.org:docs_htdocs/hibernate/_outdated-content/${PROJECT}.json
+ # filemgmt-prod*.jboss.org don't allow scp, so we'll just rsync a single file...
84
+ # That's a bit overkill but at least it works.
85
+ # Note we have to use filemgmt-prod-sync.jboss.org for rsync, not filemgmt.jboss.org or filemgmt-prod.jboss.org
86
+ rsync -z --progress ${PROJECT}-updated.json filemgmt-prod-sync.jboss.org:/docs_htdocs/hibernate/_outdated-content/${PROJECT}.json
87
rm -f ${PROJECT}-updated.json
88
89
# update the symlink of stable to the latest release
0 commit comments