Skip to content

Commit

Permalink
🐛 Fix pkg command in boot.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Mar 3, 2024
1 parent 96acb21 commit fe8d5ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SRC/Aura_OS/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ public static void BeforeRun()
ProcessManager = new ProcessManager();
ProcessManager.Initialize();

PackageManager = new PackageManager();
PackageManager.Initialize();

CustomConsole.WriteLineInfo("Loading files...");
Files.LoadFiles();

Expand Down Expand Up @@ -168,9 +171,6 @@ public static void BeforeRun()
ThemeManager = new ThemeManager();
ThemeManager.Initialize();

PackageManager = new PackageManager();
PackageManager.Initialize();

ApplicationManager = new ApplicationManager();
ApplicationManager.Initialize();

Expand Down
2 changes: 1 addition & 1 deletion SRC/Aura_OS/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Aura_OS
{
public class VersionInfo
{
public static string revision = "030320241906";
public static string revision = "030320241912";
}
}

0 comments on commit fe8d5ca

Please sign in to comment.