Skip to content

Commit

Permalink
Merge pull request sakeproject#10 from davidfowl/make-default-dot
Browse files Browse the repository at this point in the history
Changed the default SRC path to '.' instead of src.
  • Loading branch information
loudej committed May 12, 2012
2 parents d347cf8 + e2012f2 commit f0bfb19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Sake.Library/Shared/_copy.shade
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ default overwrite='${false}'


@{
var copyFiles = Files.BasePath(sourceDir);
var copyFiles = Files.BasePath(Path.GetFullPath(sourceDir));
if (!string.IsNullOrEmpty(include))
{
copyFiles = copyFiles.Include(include);
Expand Down
2 changes: 1 addition & 1 deletion src/Sake.Library/Shared/_use-standard-goals.shade
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ default TARGET_DIR='${Path.Combine(BASE_DIR, "target")}'
default BUILD_DIR='${Path.Combine(TARGET_DIR, "build")}'
default TEST_DIR='${Path.Combine(TARGET_DIR, "test")}'

default SRC='src'
default SRC='.'
default ASSEMBLYINFO_FILES='${Files.Include(SRC+"/**/AssemblyInfo.cs")}'
default BUILD_PROJECTS='${Files.Include(SRC+"/**/*.csproj")}'
default TEST_PROJECTS='${Files.Include(SRC+"/**/*.Tests.csproj")}'
Expand Down

0 comments on commit f0bfb19

Please sign in to comment.