mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 05:25:00 +00:00
42 lines
1.5 KiB
Bash
Executable File
42 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
##########################################################################
|
|
# This is the Cake bootstrapper script for Linux and OS X.
|
|
# This file was downloaded from https://github.com/cake-build/resources
|
|
# Feel free to change this file to fit your needs.
|
|
##########################################################################
|
|
|
|
# Define directories.
|
|
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
TOOLS_DIR=$SCRIPT_DIR/tools
|
|
CAKE_VERSION=0.27.1
|
|
CAKE_DLL=$TOOLS_DIR/Cake.CoreCLR.$CAKE_VERSION/Cake.dll
|
|
|
|
# Make sure the tools folder exist.
|
|
if [ ! -d "$TOOLS_DIR" ]; then
|
|
mkdir "$TOOLS_DIR"
|
|
fi
|
|
|
|
###########################################################################
|
|
# INSTALL CAKE
|
|
###########################################################################
|
|
|
|
if [ ! -f "$CAKE_DLL" ]; then
|
|
curl -Lsfo Cake.CoreCLR.zip "https://www.nuget.org/api/v2/package/Cake.CoreCLR/$CAKE_VERSION" && unzip -q Cake.CoreCLR.zip -d "$TOOLS_DIR/Cake.CoreCLR.$CAKE_VERSION" && rm -f Cake.CoreCLR.zip
|
|
if [ $? -ne 0 ]; then
|
|
echo "An error occured while installing Cake."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Make sure that Cake has been installed.
|
|
if [ ! -f "$CAKE_DLL" ]; then
|
|
echo "Could not find Cake.exe at '$CAKE_DLL'."
|
|
exit 1
|
|
fi
|
|
|
|
###########################################################################
|
|
# RUN BUILD SCRIPT
|
|
###########################################################################
|
|
|
|
# Start Cake
|
|
exec dotnet "$CAKE_DLL" "$@" |