Antiforgery/build.sh

47 строки
1.1 KiB
Bash
Исходник Обычный вид История

#!/usr/bin/env bash
2016-02-27 23:51:13 +03:00
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
2016-02-27 23:51:13 +03:00
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
2016-02-27 23:51:13 +03:00
buildFolder=".build"
buildFile="$buildFolder/KoreBuild.sh"
2016-01-12 02:53:38 +03:00
if test ! -d $buildFolder; then
2016-02-27 23:51:13 +03:00
echo "Downloading KoreBuild from $koreBuildZip"
tempFolder="/tmp/KoreBuild-$(uuidgen)"
2016-02-27 23:51:13 +03:00
mkdir $tempFolder
2016-02-27 23:51:13 +03:00
localZipFile="$tempFolder/korebuild.zip"
retries=6
until (wget -O $localZipFile $koreBuildZip 2>/dev/null || curl -o $localZipFile --location $koreBuildZip 2>/dev/null)
do
echo "Failed to download '$koreBuildZip'"
if [ "$retries" -le 0 ]; then
exit 1
fi
retries=$((retries - 1))
echo "Waiting 10 seconds before retrying. Retries left: $retries"
sleep 10s
done
2016-02-27 23:51:13 +03:00
unzip -q -d $tempFolder $localZipFile
2016-01-12 02:53:38 +03:00
mkdir $buildFolder
2016-02-27 23:51:13 +03:00
cp -r $tempFolder/**/build/** $buildFolder
2016-02-27 23:51:13 +03:00
chmod +x $buildFile
2016-02-27 23:51:13 +03:00
# Cleanup
if test -d $tempFolder; then
rm -rf $tempFolder
2016-01-12 02:53:38 +03:00
fi
fi
$buildFile -r $repoFolder "$@"