Skip to content

Commit

Permalink
Fixed default files installation
Browse files Browse the repository at this point in the history
  • Loading branch information
rozumak committed Feb 22, 2023
1 parent 4932784 commit 0899b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tailwindcss-dotnet/Install/ProjectInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private async Task CopyTo(string sourceName, string destFileName)
throw new Exception($"Cant find '{sourceName}' in embedded resources.");
}

FileStream destStream = new FileStream(destFileName, FileMode.OpenOrCreate);
await using FileStream destStream = new FileStream(destFileName, FileMode.OpenOrCreate);
await sourceStream.CopyToAsync(destStream);
}

Expand Down

0 comments on commit 0899b5c

Please sign in to comment.