9 lines
268 B
Bash
9 lines
268 B
Bash
#!/bin/sh
|
|
FILENAME=$(find target/ ! -name '*original*' -name '*.jar')
|
|
echo Found file: $FILENAME
|
|
|
|
if [ $1 = 'production' ]; then
|
|
echo Production mode
|
|
echo $UPLOAD_KEY > upload_key
|
|
yes | scp -i upload_key $FILENAME travis@server.figytuna.com:/minecraft/main/plugins
|
|
fi
|