11-28-2017, 12:37 AM
I spoke with Andrea today and we discovered that the issue is with the way windows constructs the $root_directory path:
Then coreBOS updater can't find the changesets.
I made a quick change for his install to start working:
I should have used:
After some investigating I ended changing coreBOS updater:
https://github.com/tsolucio/corebos/commit/faeaa0cf64dd2c6f9e9f25bc767b41a97aa4a4f9
Which I hope works independent of the way root_directory is defined.
Code:
$root_directory = "C:\windows\xamp\corebos/";
Then coreBOS updater can't find the changesets.
I made a quick change for his install to start working:
Code:
$root_directory = "C:\windows\xamp\corebos\\";
I should have used:
Code:
$root_directory = "C:\windows\xamp\corebos" . DIRECTORY_SEPARATOR;
After some investigating I ended changing coreBOS updater:
https://github.com/tsolucio/corebos/commit/faeaa0cf64dd2c6f9e9f25bc767b41a97aa4a4f9
Which I hope works independent of the way root_directory is defined.
Joe
TSolucio
TSolucio