mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Fix extension
This commit is contained in:
parent
64606591c6
commit
86058330d1
|
@ -45,7 +45,7 @@ export class DatabaseExportService {
|
|||
const month = String(now.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(now.getDate()).padStart(2, '0');
|
||||
|
||||
const tarballFileName = `${ZIP_BASE_FILE_NAME}-${year}-${month}-${day}.tar.zip`;
|
||||
const tarballFileName = `${ZIP_BASE_FILE_NAME}-${year}-${month}-${day}.tar.gz`;
|
||||
|
||||
return path.join(this.config.outDir, tarballFileName);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue