Skip to content

Commit

Permalink
Fixed bin path checking bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martenfur committed Nov 19, 2020
1 parent a66c671 commit 95becb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Nopipeline/Nopipeline/WatchSnapshot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public WatchSnapshot(Content content, string rootPath)
_rootPath = rootPath;

_tempSnapshotPath = Path.Combine(_rootPath, "bin/watch.npl.temp");
_tempSnapshotDirectory = Path.GetDirectoryName(Path.GetDirectoryName(_tempSnapshotPath));
_tempSnapshotDirectory = Path.GetDirectoryName(_tempSnapshotPath);
ReadSnapshot();
}

Expand Down
2 changes: 1 addition & 1 deletion Nuget.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.1.3</Version>
<Version>2.1.4</Version>
<Description>A Content Pipeline addon for Monogame which fully replaces Pipeline UI.</Description>
<Authors>Martenfur</Authors>
<Company>Chai Foxes</Company>
Expand Down

0 comments on commit 95becb8

Please sign in to comment.