Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Update build.cake
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan authored Oct 2, 2017
1 parent 1601d7e commit 6e71cce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var configuration = Argument("configuration", "Release");
var toolpath = Argument("toolpath", @"tools");
var branch = Argument("branch", EnvironmentVariable("APPVEYOR_REPO_BRANCH"));
var nugetApiKey = EnvironmentVariable("nugetApiKey");
var isRelease = EnvironmentVariable("APPVEYOR_REPO_TAG");

var testProjects = new List<Tuple<string, string[]>>
{
Expand Down Expand Up @@ -55,6 +56,7 @@ Task("Clean")
.Does(() =>
{
Information("Current Branch is:" + EnvironmentVariable("APPVEYOR_REPO_BRANCH"));
Information($"IsRelase: {isRelease}");
CleanDirectories("./src/**/bin");
CleanDirectories("./src/**/obj");
CleanDirectory(nupkgPath);
Expand Down

0 comments on commit 6e71cce

Please sign in to comment.