2 changed files with 2 additions and 2 deletions
@ -1,7 +1,7 @@ |
|||||
@echo off |
@echo off |
||||
cls |
cls |
||||
if not exist packages\FAKE\tools\FAKE.exe ( |
if not exist packages\FAKE\tools\FAKE.exe ( |
||||
.nuget\nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion |
.nuget\NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion |
||||
) |
) |
||||
packages\FAKE\tools\FAKE.exe build.fsx %* |
packages\FAKE\tools\FAKE.exe build.fsx %* |
||||
pause |
pause |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
if [ ! -f packages/FAKE/tools/FAKE.exe ]; then |
if [ ! -f packages/FAKE/tools/FAKE.exe ]; then |
||||
mono .nuget/nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion |
mono .nuget/NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion |
||||
fi |
fi |
||||
mono packages/FAKE/tools/FAKE.exe build.fsx $@ |
mono packages/FAKE/tools/FAKE.exe build.fsx $@ |
||||
|
|||||
Loading…
Reference in new issue