We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c582eb commit b6fb97fCopy full SHA for b6fb97f
src/index.ts
@@ -43,6 +43,10 @@ function downloadArchiveRequest(
43
44
const baseUrl = settings.baseUrl;
45
let url = URLExt.join(baseUrl, DIRECTORIES_URL, URLExt.encodeParts(path));
46
+ // Request downloading the root folder
47
+ if (path === '') {
48
+ url += '/';
49
+ }
50
51
const fullurl = new URL(url);
52
0 commit comments