mirror of
https://github.com/aikar/commands.git
synced 2026-05-31 14:21:56 +00:00
11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ ! -z "$1" ]; then
|
|
cd $1 || exit 1
|
|
fi
|
|
mvn -T 4 clean javadoc:jar deploy || exit 1
|
|
if [ ! -z "$1" ]; then
|
|
cd - || exit 1
|
|
fi
|
|
git add docs
|
|
git commit docs -m "Updated JavaDocs"
|