Skip to content

Commit

Permalink
PowerShell corrections for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Sep 26, 2018
1 parent adcf9f9 commit 7ff7972
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Param
(
[String]$CakeVersion = "0.29.0",
[String]$ToolsDir = "$PSScriptRoot\tools",
[String]$ToolsProj = "$ToolsDir\build.csproj",
[String]$BuildFile = "$PSScriptRoot\build.cake",
[String]$ToolsDir = "$PSScriptRoot/tools",
[String]$ToolsProj = "$ToolsDir/build.csproj",
[String]$BuildFile = "$PSScriptRoot/build.cake",
[String]$Target = 'Default',
[String]$Verbosity = 'normal'
)

$CAKE_DIR = "$ToolsDir\Cake.CoreCLR.$CakeVersion"
$CAKE_DLL = "$CAKE_DIR\cake.coreclr\$CakeVersion\Cake.dll"
$CAKE_DIR = "$ToolsDir/Cake.CoreCLR.$CakeVersion"
$CAKE_DLL = "$CAKE_DIR/cake.coreclr/$CakeVersion/Cake.dll"

If (!(Test-Path $ToolsDir))
{
Expand Down

0 comments on commit 7ff7972

Please sign in to comment.