Merge branch 'main' into feature/custom-bootstrappers

This commit is contained in:
bluepilledgreat 2025-01-21 19:49:03 +00:00
commit a080c964eb
4 changed files with 5 additions and 4 deletions

View File

@ -8,7 +8,7 @@ jobs:
publish: publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: vedantmgoyal2009/winget-releaser@v2 - uses: vedantmgoyal9/winget-releaser@main
with: with:
identifier: pizzaboxer.Bloxstrap identifier: pizzaboxer.Bloxstrap
token: ${{ secrets.WINGET_TOKEN }} token: ${{ secrets.WINGET_TOKEN }}

View File

@ -7,8 +7,8 @@
<UseWPF>true</UseWPF> <UseWPF>true</UseWPF>
<UseWindowsForms>True</UseWindowsForms> <UseWindowsForms>True</UseWindowsForms>
<ApplicationIcon>Bloxstrap.ico</ApplicationIcon> <ApplicationIcon>Bloxstrap.ico</ApplicationIcon>
<Version>2.8.5</Version> <Version>2.8.6</Version>
<FileVersion>2.8.5</FileVersion> <FileVersion>2.8.6</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest> <ApplicationManifest>app.manifest</ApplicationManifest>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>

View File

@ -663,7 +663,7 @@ namespace Bloxstrap
{ {
Directory.Delete(dir, true); Directory.Delete(dir, true);
} }
catch (IOException ex) catch (Exception ex)
{ {
App.Logger.WriteLine(LOG_IDENT, $"Failed to delete {dir}"); App.Logger.WriteLine(LOG_IDENT, $"Failed to delete {dir}");
App.Logger.WriteException(LOG_IDENT, ex); App.Logger.WriteException(LOG_IDENT, ex);

View File

@ -113,6 +113,7 @@ namespace Bloxstrap
if (i < Args.Length - 1 && Args[i+1] is string nextArg && !nextArg.StartsWith('-')) if (i < Args.Length - 1 && Args[i+1] is string nextArg && !nextArg.StartsWith('-'))
{ {
flag.Data = nextArg; flag.Data = nextArg;
i++;
App.Logger.WriteLine(LOG_IDENT, $"Identifier '{identifier}' is active with data"); App.Logger.WriteLine(LOG_IDENT, $"Identifier '{identifier}' is active with data");
} }
else else