orbit
orbit copied to clipboard
Window10 bootstrap-orbit.ps1 have a little problem with conan version check part
On 44 line of ./bootstrap-orbit.ps1,
if (!Check-Conan-Version-Sufficient $conan_version $conan_version_required) {
^
|
not compiled well.
Since my computer language setting is not English, the error message may not be shown.
I fixed the above problem as:
if (!(Check-Conan-Version-Sufficient $conan_version $conan_version_required)) {
Thank you.
Hi jangddol, thank you for your contribution! Could you put that into a pull request, so that we can merge that? That would be great.
Thank you, Henning