Skip to content

Commit aa24761

Browse files
committed
update
1 parent fe95da7 commit aa24761

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/services/project-changes-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,9 @@ export class ProjectChangesService implements IProjectChangesService {
230230

231231
let fileStats = this.$fs.getFsStats(filePath);
232232

233-
let changed = fileStats.mtime.getTime() >= this._outputProjectMtime ||
234-
fileStats.ctime.getTime() >= this._outputProjectCTime ||
235-
fileStats.atime.getTime() >= this._outputProjectATime;
233+
let changed = fileStats.mtime.getTime() > this._outputProjectMtime ||
234+
fileStats.ctime.getTime() > this._outputProjectCTime ||
235+
fileStats.atime.getTime() > this._outputProjectATime;
236236

237237
if (changed) {
238238
if (processFunc) {

0 commit comments

Comments
 (0)