Use webdev for distribution repository

This commit is contained in:
Adam
2017-03-11 14:34:22 -05:00
parent 97d28abd0a
commit 20831b39eb
5 changed files with 9 additions and 20 deletions

View File

@@ -1,15 +1,7 @@
#!/bin/bash
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
ssh-keyscan -t rsa $RUNELITE_BACKEND > ~/.ssh/known_hosts 2>/dev/null
openssl aes-256-cbc -d -in travis/runelite.key.enc -out ~/.ssh/runelite -k $SECRET_KEY
chmod 600 ~/.ssh/runelite
set -o pipefail
mvn clean deploy --settings travis/settings.xml | sed "s/$RUNELITE_BACKEND/REDACTED/g"
exit
mvn clean deploy --settings travis/settings.xml
else
mvn clean verify --settings travis/settings.xml
exit
fi