Skip to content

Commit

Permalink
Was still passing full.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Dec 19, 2024
1 parent 1fd696b commit 6b524e8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,7 @@ public async Task<int> ExecuteAsync(IkvmImporterOptions options, CancellationTok
if (options.CompressResources)
w.WriteLine("-compressresources");

if (options.Debug == IkvmImporterDebugMode.Full)
w.WriteLine("-debug full");
else if (options.Debug == IkvmImporterDebugMode.Portable)
if (options.Debug == IkvmImporterDebugMode.Portable)
w.WriteLine("-debug portable");
else if (options.Debug == IkvmImporterDebugMode.Embedded)
w.WriteLine("-debug embedded");
Expand Down

0 comments on commit 6b524e8

Please sign in to comment.