Fix symlink detection

This commit is contained in:
Michael Jackson 2018-04-28 18:05:10 -07:00
parent 577fa7608b
commit 172c955823
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ function stripNamePrefix(headers) {
}
function ignoreSymlinks(file, headers) {
return headers.type === "link";
return headers.type === "symlink";
}
function extractResponse(response, outputDir) {