diff --git a/build.cmd b/build.cmd index 95282011..e5e72212 100644 --- a/build.cmd +++ b/build.cmd @@ -1,6 +1,6 @@ @echo off 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 ) packages\FAKE\tools\FAKE.exe build.fsx %* diff --git a/build.sh b/build.sh index dc013c46..c1c7b997 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/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 fi mono packages/FAKE/tools/FAKE.exe build.fsx $@