mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add branch to defaultAppRoot unless release/beta build
This commit is contained in:
parent
1120836ff8
commit
df8a4bfa34
@ -60,6 +60,9 @@ const QString getAppName()
|
||||
const QString getDefaultAppRoot()
|
||||
{
|
||||
QString approot = STR_AppRoot;
|
||||
if ((GIT_BRANCH != "master") || (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("beta", Qt::CaseInsensitive)==0)))) {
|
||||
approot += "-"+GIT_BRANCH;
|
||||
}
|
||||
return approot;
|
||||
}
|
||||
|
||||
|
@ -63,16 +63,8 @@ QString GetAppRoot()
|
||||
|
||||
QString HomeAppRoot = settings.value("Settings/AppRoot").toString();
|
||||
|
||||
const QString desktopFolder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
||||
|
||||
if (HomeAppRoot.isEmpty()) {
|
||||
HomeAppRoot = desktopFolder + "/" + getDefaultAppRoot();
|
||||
|
||||
const QString testing = "-Testing";
|
||||
QDir dir(HomeAppRoot+testing);
|
||||
if (dir.exists()) {
|
||||
HomeAppRoot += testing;
|
||||
}
|
||||
HomeAppRoot = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)+"/"+getDefaultAppRoot();
|
||||
}
|
||||
|
||||
return HomeAppRoot;
|
||||
|
Loading…
Reference in New Issue
Block a user