Some checks failed
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Build Application / Build Debug (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-13, x86_64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-14, aarch64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04, x86_64-linux) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04-arm, aarch64-linux) (push) Has been cancelled
Update Flake Lockfile / update-flake (push) Has been cancelled
24 lines
845 B
C++
Executable File
24 lines
845 B
C++
Executable File
#include "CreateGameFolders.h"
|
|
#include "FileSystem.h"
|
|
#include "launch/LaunchTask.h"
|
|
#include "minecraft/MinecraftInstance.h"
|
|
|
|
CreateGameFolders::CreateGameFolders(LaunchTask* parent) : LaunchStep(parent) {}
|
|
|
|
void CreateGameFolders::executeTask()
|
|
{
|
|
auto instance = m_parent->instance();
|
|
|
|
if (!FS::ensureFolderPathExists(instance->gameRoot())) {
|
|
emit logLine("Couldn't create the main game folder", MessageLevel::Error);
|
|
emitFailed(tr("Couldn't create the main game folder"));
|
|
return;
|
|
}
|
|
|
|
// HACK: this is a workaround for MCL-3732 - 'server-resource-packs' folder is created.
|
|
if (!FS::ensureFolderPathExists(FS::PathCombine(instance->gameRoot(), "server-resource-packs"))) {
|
|
emit logLine("Couldn't create the 'server-resource-packs' folder", MessageLevel::Error);
|
|
}
|
|
emitSucceeded();
|
|
}
|