mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
[GH-ISSUE #208] UppHub problem when TheIDE is installed under a folder with spaces #81
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/ultimatepp#81
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @izabala123 on GitHub (Oct 9, 2024).
Original GitHub issue: https://github.com/ultimatepp/ultimatepp/issues/208
Now UppHub fails to run git clone if the folder where TheIDE is installed has spaces.
This can be solved by replacing in file ide/UppHub.cpp, line 555
cmd << ' ' << dir;with
cmd << " \"" << dir << "\"";Best regards
Iñaki
@mirek-fidler commented on GitHub (Oct 10, 2024):
Thanks!
On Wed, Oct 9, 2024 at 5:04 PM Iñaki Zabala @.***>
wrote:
@izabala123 commented on GitHub (Oct 11, 2024):
You're welcome!