replace unzipping with unpacking

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
(cherry picked from commit 9eb1ce3ad7)
This commit is contained in:
Trial97
2024-10-28 12:39:26 +02:00
committed by github-actions[bot]
parent 8e4994590b
commit 98fe035442
2 changed files with 5 additions and 5 deletions

View File

@ -138,7 +138,7 @@ void PackInstallTask::install()
if (unzipMcDir.exists()) {
// ok, found minecraft dir, move contents to instance dir
if (!FS::move(m_stagingPath + "/unzip/minecraft", m_stagingPath + "/minecraft")) {
emitFailed(tr("Failed to move unzipped Minecraft!"));
emitFailed(tr("Failed to move unpacked Minecraft!"));
return;
}
}