mirror of
https://github.com/apache/maven.git
synced 2025-02-06 10:09:04 +00:00
601320d28f
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162925 13f79535-47bb-0310-9956-ffa450edef68
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
m2 apt xdoc
|
|
|
|
(
|
|
cd target
|
|
tar cvzf ../docs.tgz docs
|
|
)
|
|
|
|
scp docs.tgz www.apache.org:~/public_html/m2
|
|
|
|
ssh www.apache.org "cd public_html/m2; tar xvzf docs.tgz"
|