Skip to content

Commit

Permalink
Merge pull request #1895 from thomaslevesque/fix-pack-build-target
Browse files Browse the repository at this point in the history
Fix pack build target to support spaces in path
  • Loading branch information
blairconrad committed Nov 28, 2022
2 parents edade0e + 2795bf8 commit 154c1e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.githubtoken
.vs
.idea
[Oo]bj
[Bb]in
artifacts
Expand Down
2 changes: 1 addition & 1 deletion tools/FakeItEasy.Build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"pack",
DependsOn("build"),
forEach: projectsToPack,
action: project => Run("dotnet", $"pack {project.Path} --configuration Release --no-build --nologo --output {Path.GetFullPath("artifacts/output")}"));
action: project => Run("dotnet", $"pack {project.Path} --configuration Release --no-build --nologo --output \"{Path.GetFullPath("artifacts/output")}\""));

Target(
"force-approve",
Expand Down

0 comments on commit 154c1e5

Please sign in to comment.