diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2023-11-19 21:07:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-20 02:07:26 +0000 |
| commit | 5c813db5f9c7cd7843895ee289a991ee948103f6 (patch) | |
| tree | 30cbbce89279e0423e1f90c066b108a8ef184662 /data/datasource_git.go | |
| parent | f02b5c4a8ac9127f889b9ef713218335d5146e00 (diff) | |
Fix the wdFS behaviour due to Go 1.21.4's changes to IsAbs (#1915)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'data/datasource_git.go')
| -rw-r--r-- | data/datasource_git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/datasource_git.go b/data/datasource_git.go index 02df14be..3859d344 100644 --- a/data/datasource_git.go +++ b/data/datasource_git.go @@ -241,7 +241,7 @@ func (g gitsource) clone(ctx context.Context, repoURL *url.URL, depth int) (bill return g.clone(ctx, u, depth) } if err != nil { - return nil, nil, fmt.Errorf("git clone for %v failed: %w", repoURL, err) + return nil, nil, fmt.Errorf("git clone %s: %w", u, err) } return fs, repo, nil } |
