aboutsummaryrefslogtreecommitdiff
path: root/src/libfetchers
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2023-02-09 16:42:14 +0100
committerGitHub <noreply@github.com>2023-02-09 16:42:14 +0100
commit15313bfdb7139d0fef53a5845dfdd7be90bd68c8 (patch)
tree1c0f13bc4b7ffe8e8b1173cf9a66f02f1949fe90 /src/libfetchers
parent9a7dc5d71879a32ff06305aa843abf299b39c90f (diff)
Fix activity message
Co-authored-by: Josef Kemetmüller <josef.kemetmueller@gmail.com>
Diffstat (limited to 'src/libfetchers')
-rw-r--r--src/libfetchers/git.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc
index 3871cf0dd..1fafc7df8 100644
--- a/src/libfetchers/git.cc
+++ b/src/libfetchers/git.cc
@@ -648,7 +648,7 @@ struct GitInputScheme : InputScheme
}
{
- Activity act(*logger, lvlTalkative, actUnknown, fmt("fetching submodules of '%s'", repoDir));
+ Activity act(*logger, lvlTalkative, actUnknown, fmt("fetching submodules of '%s'", actualUrl));
runProgram("git", true, { "-C", tmpDir, "submodule", "--quiet", "update", "--init", "--recursive" });
}