Skip to content

Commit

Permalink
Merge pull request #140 from bcgov/duplicate-date-change
Browse files Browse the repository at this point in the history
edit the start.bat file and add -aoa
  • Loading branch information
barrfalk committed Feb 28, 2023
2 parents 2e3e9e0 + ba52651 commit a07fec8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/zip-file/zip-file.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ export class ZipFileService {
"rem Batch file extract zip files, runs Fortran code",
"rem Batch file extract zip files, runs Fortran code\n\ncall download.bat"
);
startBatContent = startBatContent.replace(
"7z x *.m3d.7z",
"7z x *.m3d.7z -aoa"
);
fs.writeFile(folder + fileName, startBatContent, function (err) {
if (err) throw err;
});
Expand Down

0 comments on commit a07fec8

Please sign in to comment.