Use config namespace in git.cpp.

This commit is contained in:
tastytea 2021-01-09 14:35:28 +01:00
parent 6fcb349e90
commit f48ad494b5
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ using namespace std::chrono_literals;
using namespace FediBlock::config;
git_repository *_repo{nullptr};
const string _clone_url{format("git@{:s}:{:s}/{:s}.git", config::forge_domain,
config::forge_org, config::forge_repo_data)};
const string _clone_url{
format("git@{:s}:{:s}/{:s}.git", forge_domain, forge_org, forge_repo_data)};
fs::path _repo_dir{};
void init(const bool cache)