mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 22:45:17 +02:00
changing dev version
This commit is contained in:
parent
9582fadef4
commit
a4efe55bbf
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ set(SIXENSE_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/Sixense)
|
|||
if (DEFINED ENV{JOB_ID})
|
||||
set(BUILD_SEQ $ENV{JOB_ID})
|
||||
else ()
|
||||
set(BUILD_SEQ "0.1")
|
||||
set(BUILD_SEQ "dev")
|
||||
endif ()
|
||||
|
||||
if (APPLE)
|
||||
|
|
|
@ -4436,7 +4436,7 @@ bool Application::shouldSkipVersion(QString latestVersion) {
|
|||
QByteArray skipFileContents = skipFile->readAll();
|
||||
QString *skipVersion = new QString(skipFileContents);
|
||||
skipFile->close();
|
||||
if (*skipVersion == latestVersion /*|| applicationVersion() == "0.1"*/) {
|
||||
if (*skipVersion == latestVersion || applicationVersion() == "dev") {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue