mirror of https://github.com/procxx/kepka.git
skipping tdata folder when updating in linux, log file name fixed for Updater in os x
This commit is contained in:
parent
9fcd878f1d
commit
3373a2f382
|
@ -215,7 +215,7 @@ void delFolder() {
|
||||||
bool update() {
|
bool update() {
|
||||||
writeLog("Update started..");
|
writeLog("Update started..");
|
||||||
|
|
||||||
string updDir = workDir + "tupdates/temp", readyFilePath = workDir + "tupdates/temp/ready";
|
string updDir = workDir + "tupdates/temp", readyFilePath = workDir + "tupdates/temp/ready", tdataDir = workDir + "tupdates/temp/tdata";
|
||||||
{
|
{
|
||||||
FILE *readyFile = fopen(readyFilePath.c_str(), "rb");
|
FILE *readyFile = fopen(readyFilePath.c_str(), "rb");
|
||||||
if (readyFile) {
|
if (readyFile) {
|
||||||
|
@ -223,6 +223,7 @@ bool update() {
|
||||||
writeLog("Ready file found! Using new path '%s'..", updDir.c_str());
|
writeLog("Ready file found! Using new path '%s'..", updDir.c_str());
|
||||||
} else {
|
} else {
|
||||||
updDir = workDir + "tupdates/ready"; // old
|
updDir = workDir + "tupdates/ready"; // old
|
||||||
|
tdataDir = workDir + "tupdates/ready/tdata";
|
||||||
writeLog("Ready file not found! Using old path '%s'..", updDir.c_str());
|
writeLog("Ready file not found! Using old path '%s'..", updDir.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -255,7 +256,9 @@ bool update() {
|
||||||
|
|
||||||
string fname = dir + '/' + p->d_name;
|
string fname = dir + '/' + p->d_name;
|
||||||
struct stat statbuf;
|
struct stat statbuf;
|
||||||
if (!stat(fname.c_str(), &statbuf)) {
|
if (fname.substr(0, tdataDir.size()) == tdataDir && (fname.size() <= tdataDir.size() || fname.at(tdataDir.size()) == '/')) {
|
||||||
|
writeLog("Skipping 'tdata' path '%s'", fname.c_str());
|
||||||
|
} else if (!stat(fname.c_str(), &statbuf)) {
|
||||||
if (S_ISDIR(statbuf.st_mode)) {
|
if (S_ISDIR(statbuf.st_mode)) {
|
||||||
dirs.push_back(fname);
|
dirs.push_back(fname);
|
||||||
writeLog("Added dir '%s' in update tree..", fname.c_str());
|
writeLog("Added dir '%s' in update tree..", fname.c_str());
|
||||||
|
@ -268,7 +271,9 @@ bool update() {
|
||||||
}
|
}
|
||||||
if (fname == readyFilePath) {
|
if (fname == readyFilePath) {
|
||||||
writeLog("Skipped ready file '%s'", fname.c_str());
|
writeLog("Skipped ready file '%s'", fname.c_str());
|
||||||
} else {
|
} else if (fname == versionFilePath) {
|
||||||
|
writeLog("Skipped version file '%s'", fname.c_str());
|
||||||
|
} else {
|
||||||
from.push_back(fname);
|
from.push_back(fname);
|
||||||
to.push_back(tofname);
|
to.push_back(tofname);
|
||||||
writeLog("Added file '%s' to be copied to '%s'", fname.c_str(), tofname.c_str());
|
writeLog("Added file '%s' to be copied to '%s'", fname.c_str(), tofname.c_str());
|
||||||
|
@ -326,7 +331,6 @@ int main(int argc, char *argv[]) {
|
||||||
autostart = true;
|
autostart = true;
|
||||||
} else if (equal(argv[i], "-debug")) {
|
} else if (equal(argv[i], "-debug")) {
|
||||||
debug = _debug = true;
|
debug = _debug = true;
|
||||||
openLog();
|
|
||||||
} else if (equal(argv[i], "-startintray")) {
|
} else if (equal(argv[i], "-startintray")) {
|
||||||
startintray = true;
|
startintray = true;
|
||||||
} else if (equal(argv[i], "-testmode")) {
|
} else if (equal(argv[i], "-testmode")) {
|
||||||
|
|
Loading…
Reference in New Issue