Skip to content

Commit a887311

Browse files
chore: fix linter
1 parent 0e5bd40 commit a887311

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/controllers/migrate-controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
143143
}
144144
}
145145

146-
private async cleanUpProject(projectData: IProjectData) {
146+
private async cleanUpProject(projectData: IProjectData): Promise<void> {
147147
this.$logger.info("Clean old project artefacts.");
148148
this.$fs.deleteDirectory(path.join(projectData.projectDir, constants.HOOKS_DIR_NAME));
149149
this.$fs.deleteDirectory(path.join(projectData.projectDir, constants.PLATFORMS_DIR_NAME));
@@ -157,7 +157,7 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
157157
this.$logger.info("Clean old project artefacts complete.");
158158
}
159159

160-
private async handleAutoGeneratedFiles(backupDir: string, projectData: IProjectData) {
160+
private handleAutoGeneratedFiles(backupDir: string, projectData: IProjectData): void {
161161
const globOptions: glob.IOptions = {
162162
silent: true,
163163
nocase: true,

0 commit comments

Comments
 (0)