Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Description:
  • Loading branch information
Murmele committed Feb 13, 2024
1 parent 95112e5 commit 6ece84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/Repository.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ QDir Repository::dir(bool includeGitFolder) const {
assert(false);
auto list = dir.path().split("/"); // TODO: also on windows?
list.removeLast();
dir = QDir(list.join(QStringLiteral("/"));
dir = QDir(list.join(QStringLiteral("/")));
Debug("New dir after manual join: " << dir);
}
Debug("dir after cd Up: " << dir);
Expand Down

0 comments on commit 6ece84c

Please sign in to comment.