mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 02:44:36 +02:00
clarify asset-server migration message
This commit is contained in:
parent
f117bd5867
commit
8eaea8a7ff
1 changed files with 2 additions and 3 deletions
|
@ -97,11 +97,10 @@ void AssetServer::completeSetup() {
|
|||
qDebug() << "Creating resources directory";
|
||||
_resourcesDirectory.mkpath(".");
|
||||
|
||||
bool noExistingAssets = !_resourcesDirectory.exists() \
|
||||
|| _resourcesDirectory.entryList(QDir::Files).size() == 0;
|
||||
bool noExistingAssets = !_resourcesDirectory.exists() || _resourcesDirectory.entryList(QDir::Files).size() == 0;
|
||||
|
||||
if (noExistingAssets) {
|
||||
qDebug() << "Asset resources directory not found, searching for existing asset resources";
|
||||
qDebug() << "Asset resources directory empty, searching for existing asset resources to migrate";
|
||||
QString oldDataDirectory = QCoreApplication::applicationDirPath();
|
||||
|
||||
const QString OLD_RESOURCES_PATH = "assets";
|
||||
|
|
Loading…
Reference in a new issue