updated the test-deployment script.

This commit is contained in:
Tobias Ottenweller 2013-05-19 10:06:27 +02:00
parent 0230314c7e
commit dd492a7327

View File

@ -2,8 +2,17 @@
SCRIPT_DIR=$(dirname "$0")
DEVELOPER=$(whoami)
if [ $DEVELOPER = "tobi" ]; then
BUKKIT_DIR="$HOME/minecraft/testbuk"
PLUGIN_DIR="$HOME/minecraft/testbuk/plugins"
else
BUKKIT_DIR="$SCRIPT_DIR/../bukkit-testserver"
PLUGIN_DIR="$SCRIPT_DIR/../bukkit-testserver/plugins"
fi
# TODO: This is a bad solution! Maven should write necessary information into an extra file.
ARTIFACT_ID="$(grep -C3 '<groupId>de.craftinc' "$SCRIPT_DIR/../pom.xml" | grep '<artifactId>' | sed 's/[ \t]*<artifactId>//g' | sed 's/<\/artifactId>[ \t]*//g')"
@ -18,4 +27,9 @@ cp "$SCRIPT_DIR/../target/$ARTIFACT_ID-$VERSION".jar "$PLUGIN_DIR/$ARTIFACT_ID".
echo -e "ddidderr\nmice_on_drugs\nMochaccino\nbeuth_el_max" > "$BUKKIT_DIR/ops.txt"
if [ $DEVELOPER = "tobi" ]; then
"$BUKKIT_DIR/../minecraft.sh" reload_or_start
else
"$SCRIPT_DIR/minecraft.sh" reload_or_start
fi