Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Fixing Windows and Unix build scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
techyian committed Jan 24, 2017
1 parent 1e81dd8 commit 1163f9d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
1 change: 0 additions & 1 deletion .paket/paket.dependencies

This file was deleted.

1 change: 0 additions & 1 deletion .paket/paket.lock

This file was deleted.

5 changes: 3 additions & 2 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ if errorlevel 1 (
exit /b %errorlevel%
)

paket.exe restore
paket.exe update
if errorlevel 1 (
exit /b %errorlevel%
)

cd ..
packages\FAKE.4.50.0\tools\FAKE.exe "%PWD%" BuildApp

packages\FAKE\tools\FAKE.exe "%PWD%" BuildApp
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// include Fake lib
#r "packages/FAKE.4.50.0/tools/FakeLib.dll"
#r "packages/FAKE/tools/FakeLib.dll"
open Fake

// Properties
Expand Down
9 changes: 7 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
pwd=`pwd`
echo $pwd

sudo chmod +x .paket/paket.bootstrapper.exe

.paket/paket.bootstrapper.exe
.paket/paket.exe restore

mono packages/FAKE.4.50.0/tools/FAKE.exe $pwd/build.fsx BuildApp
sudo chmod +x .paket/paket.exe

.paket/paket.exe update

mono packages/FAKE/tools/FAKE.exe $pwd/build.fsx BuildApp
4 changes: 4 additions & 0 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source https://www.nuget.org/api/v2

// NuGet packages
nuget FAKE ~> 4.50.0
3 changes: 3 additions & 0 deletions paket.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
NUGET
remote: https://www.nuget.org/api/v2
FAKE (4.50)
File renamed without changes.

0 comments on commit 1163f9d

Please sign in to comment.