Skip to content

Commit

Permalink
Don't deploy mpak folder
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed May 3, 2024
1 parent 34d0005 commit b533f40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/v2/Meadow.Tooling.Core/Package/PackageManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ void FindApp(string directory, List<FileInfo> fileList)
{
var shortname = Path.GetFileName(dir);

if (shortname == PostLinkDirectoryName || shortname == PreLinkDirectoryName)
if (shortname == PostLinkDirectoryName ||
shortname == PreLinkDirectoryName ||
shortname == PackageOutputDirectoryName)
{
continue;
}
Expand Down

0 comments on commit b533f40

Please sign in to comment.