This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
java-minecraft-plugin/upload_jar.sh
Hyperling 9bcfc1e0e6 v0.2.0
Added /invincible.
Added up and down arguments to /excavate.
Fixed inventory and performance issue with /excavate.
Don't upload shell file for pushing jar.
2018-12-30 13:02:26 -06:00

11 lines
332 B
Bash
Executable File

#!/bin/bash
ssh mc@192.168.1.65 rm -v Programs/minecraft/craftbukkit/plugins/*.jar
scp /home/ling/Programs/eclipse-workspace/CoderDojoEVV/target/*.jar mc@192.168.1.65:Programs/minecraft/craftbukkit/plugins
scp_status=$?
if [[ $scp_status == 0 ]]; then
rm -v /home/ling/Programs/eclipse-workspace/CoderDojoEVV/target/*.jar
fi