We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe95da7 commit aa24761Copy full SHA for aa24761
lib/services/project-changes-service.ts
@@ -230,9 +230,9 @@ export class ProjectChangesService implements IProjectChangesService {
230
231
let fileStats = this.$fs.getFsStats(filePath);
232
233
- let changed = fileStats.mtime.getTime() >= this._outputProjectMtime ||
234
- fileStats.ctime.getTime() >= this._outputProjectCTime ||
235
- fileStats.atime.getTime() >= this._outputProjectATime;
+ let changed = fileStats.mtime.getTime() > this._outputProjectMtime ||
+ fileStats.ctime.getTime() > this._outputProjectCTime ||
+ fileStats.atime.getTime() > this._outputProjectATime;
236
237
if (changed) {
238
if (processFunc) {
0 commit comments