Skip to content

Commit f29708d

Browse files
committed
remove -k argument from curl
1 parent 62b74ce commit f29708d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/item-page/clarin-files-section/clarin-files-section.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export class ClarinFilesSectionComponent implements OnInit {
110110
// Generate curl command for individual bitstream downloads
111111
const baseUrl = `${this.halService.getRootHref()}/bitstream/${this.itemHandle}`;
112112
const fileNamesFormatted = fileNames.map((fileName, index) => `/${index}/${fileName}`).join(',');
113-
this.command = `curl -O ${baseUrl}{${fileNamesFormatted}} -k`;
113+
this.command = `curl -O ${baseUrl}{${fileNamesFormatted}}`;
114114
}
115115

116116
loadDownloadZipConfigProperties() {

0 commit comments

Comments
 (0)