Skip to content

Commit 400711e

Browse files
committed
Run dotnet format on the project
1 parent cfa7558 commit 400711e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ThunderstoreCLI/Commands/BuildCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public static int DoBuild(Config config)
196196

197197
plan.AddPlan("icon.png", new EntryData.FromFile(iconPath));
198198
plan.AddPlan("README.md", new EntryData.FromFile(readmePath));
199-
plan.AddPlan("manifest.json", new EntryData.FromMemory(Encoding.UTF8.GetBytes(SerializeManifest(config)), (UnixFileMode)0b110_110_100)); // rw-rw-r--
199+
plan.AddPlan("manifest.json", new EntryData.FromMemory(Encoding.UTF8.GetBytes(SerializeManifest(config)), (UnixFileMode) 0b110_110_100)); // rw-rw-r--
200200

201201
if (config.BuildConfig.CopyPaths is not null)
202202
{
@@ -230,7 +230,7 @@ public static int DoBuild(Config config)
230230
if (!OperatingSystem.IsWindows())
231231
{
232232
// windows-created archives do not use these bits as unix file mode, so we should not set them there
233-
archiveEntry.ExternalAttributes |= (int)entry.Value.GetUnixFileMode() << 16;
233+
archiveEntry.ExternalAttributes |= (int) entry.Value.GetUnixFileMode() << 16;
234234
}
235235

236236
using var entryStream = archiveEntry.Open();

0 commit comments

Comments
 (0)