Home » Developing U++ » UppHub » Problems
Re: Problems [message #57891 is a reply to message #57889] |
Mon, 27 December 2021 12:26   |
 |
Klugier
Messages: 1106 Registered: September 2012 Location: Poland, Kraków
|
Senior Contributor |
|
|
Hello Slash,
It seems that you do not git in your environment. Could you enter terminal and call:
The UppHub option in the Setup -> UppHub.. is disable via HasGit() method:
#ifdef PLATFORM_WIN32
String GetInternalGitPath()
{
return GetExeDirFile("bin/mingit/cmd/git.exe");
}
bool HasGit()
{
String dummy;
static bool b = FileExists(GetInternalGitPath()) || Sys("git", dummy) >= 0;
return b;
}
#else
bool HasGit()
{
String dummy;
static bool b = Sys("git", dummy) >= 0;
return b;
}
#endif
UppHub requires git in order to work. We will need to communicate it batter.
----------------
I created following PR to adress some issues from this thread.
Klugier
U++ - one framework to rule them all.
[Updated on: Mon, 27 December 2021 13:30] Report message to a moderator
|
|
|
Goto Forum:
Current Time: Mon Aug 25 20:55:29 CEST 2025
Total time taken to generate the page: 0.06087 seconds
|