Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Developing U++ » UppHub » Problems
Re: Problems [message #57891 is a reply to message #57889] Mon, 27 December 2021 12:26 Go to previous messageGo to previous message
Klugier is currently offline  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:
git


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

 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: How to use/access UppHub?
Next Topic: Using TerminalCtrl - does not compile
Goto Forum:
  


Current Time: Mon Aug 25 20:55:29 CEST 2025

Total time taken to generate the page: 0.06087 seconds