Skip to content

Commit

Permalink
Merge pull request #185 from kkazuo/patch-1
Browse files Browse the repository at this point in the history
Fix build exe path which includes whitespace
  • Loading branch information
forki committed Jul 23, 2015
2 parents 646c0e0 + eb953f2 commit 301214d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .paket/paket.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PaketExePath Condition=" '$(PaketExePath)' == '' ">$(PaketToolsPath)paket.exe</PaketExePath>
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand>
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketExePath)</PaketCommand>
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 "$(PaketExePath)"</PaketCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketBootStrapperExePath)</PaketBootStrapperCommand>
<!-- Commands -->
Expand All @@ -33,4 +33,4 @@
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
<Exec Command="$(RestoreCommand)" WorkingDirectory="$(PaketRootPath)" />
</Target>
</Project>
</Project>

0 comments on commit 301214d

Please sign in to comment.