Skip to content

Commit 7e2d877

Browse files
committed
Fix incorrect error message
This is likely a copy/pasta left-over. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4616760 commit 7e2d877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async function clone(
7474
if (code === 0) {
7575
resolve()
7676
} else {
77-
reject(new Error(`tar: exited with code ${code}`))
77+
reject(new Error(`git clone: exited with code ${code}`))
7878
}
7979
})
8080
})

0 commit comments

Comments
 (0)