Skip to content

Commit

Permalink
Change case of build folder in build commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Dec 7, 2012
1 parent 885ecc5 commit 6313248
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
export EnableNuGetPackageRestore="true"
xbuild Build/Build.proj /t:GoMono
xbuild build/Build.proj /t:GoMono
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
all:
xbuild Build/Build.proj /t:GoMono
xbuild build/Build.proj /t:GoMono

compile:
xbuild Build/Build.proj /t:Build
xbuild build/Build.proj /t:Build

# For some odd reason, this hangs after running all the tests so
# ctrl + c might be needed to break out after tests run.
tests: compile
xbuild Build/Build.proj /t:RunTests
xbuild build/Build.proj /t:RunTests

functionaltests: compile
xbuild Build/Build.proj /t:RunFunctionalTests
xbuild build/Build.proj /t:RunFunctionalTests

0 comments on commit 6313248

Please sign in to comment.