66 строки
1.7 KiB
Bash
Executable File
66 строки
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
###############################################################
|
|
# This is the Cake bootstrapper script that is responsible for
|
|
# downloading Cake and all specified tools from NuGet.
|
|
###############################################################
|
|
|
|
# Define directories.
|
|
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
TOOLS_DIR=$SCRIPT_DIR/tools
|
|
NUGET_EXE=$TOOLS_DIR/nuget.exe
|
|
CAKE_EXE=$TOOLS_DIR/Cake/Cake.exe
|
|
|
|
# Define default arguments.
|
|
SCRIPT="build.cake"
|
|
TARGET="Default"
|
|
CONFIGURATION="Release"
|
|
VERBOSITY="verbose"
|
|
DRYRUN=false
|
|
SHOW_VERSION=false
|
|
|
|
# Parse arguments.
|
|
for i in "$@"; do
|
|
case $1 in
|
|
-s|--script) SCRIPT="$2"; shift ;;
|
|
-t|--target) TARGET="$2"; shift ;;
|
|
-c|--configuration) CONFIGURATION="$2"; shift ;;
|
|
-v|--verbosity) VERBOSITY="$2"; shift ;;
|
|
-d|--dryrun) DRYRUN=true ;;
|
|
--version) SHOW_VERSION=true ;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
# Download NuGet if it does not exist.
|
|
if [ ! -f $NUGET_EXE ]; then
|
|
echo "Downloading NuGet..."
|
|
curl -Lsfo $NUGET_EXE https://www.nuget.org/nuget.exe
|
|
if [ $? -ne 0 ]; then
|
|
echo "An error occured while downloading nuget.exe."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Restore tools from NuGet.
|
|
pushd $TOOLS_DIR >/dev/null
|
|
mono $NUGET_EXE install -ExcludeVersion
|
|
popd >/dev/null
|
|
|
|
# Make sure that Cake has been installed.
|
|
if [ ! -f $CAKE_EXE ]; then
|
|
echo "Could not find Cake.exe."
|
|
exit 1
|
|
fi
|
|
|
|
# Start Cake
|
|
if $SHOW_VERSION; then
|
|
mono $CAKE_EXE -version
|
|
elif $DRYRUN; then
|
|
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -dryrun
|
|
else
|
|
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET
|
|
fi
|
|
|
|
exit $?
|
|
|