Commit 29cb3a85 authored by nanahira's avatar nanahira

no cache in retry

parent c9ae2964
Pipeline #40953 passed with stages
in 9 minutes and 58 seconds
......@@ -314,7 +314,7 @@ export class PackagerService extends ConsoleLogger {
private async archiveProcess(root: string, archiveTask: ArchiveTask, retry = 0): Promise<Archive> {
const archive = archiveTask.archive;
const archiveName = archiveTask.archiveFullPath;
if (!archiveTask.force) {
if (!archiveTask.force && retry === 0) {
const existing = await this.s3.fileExists(archiveName);
if (existing) {
const hash = await this.appService.lookForExistingArchiveHash(archiveTask.path);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment