mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-09 22:59:13 +07:00
13 lines
330 B
Bash
13 lines
330 B
Bash
#!/usr/bin/env bash
|
|
|
|
OLD_TRAVIS_BUILD_NUMBER=`expr $TRAVIS_BUILD_NUMBER - 7`
|
|
OLD_DESKFILE=$OLD_TRAVIS_BUILD_BUMBER"-desktop-bleeding-edge.jar"
|
|
OLD_FILE1="Bleeding-Edge-Build-"$OLD_TRAVIS_BUILD_NUMBER".md"
|
|
|
|
if [ -e $OLD_FILE1 ]; then
|
|
rm -f $OLD_FILE1
|
|
rm -f $OLD_DESKFILE
|
|
git add $OLD_FILE1
|
|
git add $OLD_DESKFILE
|
|
fi
|