aboutsummaryrefslogtreecommitdiff
path: root/src/fetch_git.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch_git.c')
-rw-r--r--src/fetch_git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fetch_git.c b/src/fetch_git.c
index 6353678..2d9e9a2 100644
--- a/src/fetch_git.c
+++ b/src/fetch_git.c
@@ -41,7 +41,7 @@ int fetch_git(Pkg pkg) {
waitpid(pid, &status, 0);
int result = WIFEXITED(status) ? WEXITSTATUS(status) : -1;
if (result != 0) {
- printf("clone failed\n");
+ printf("%s git clone failed\n", print_warning);
}
return result;