We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b6e200 commit d481e75Copy full SHA for d481e75
1 file changed
index.js
@@ -54,7 +54,7 @@ class S3Notifier {
54
}
55
56
compareLastModifieds(newLastModified) {
57
- if (newLastModified !== this.lastModified) {
+ if (newLastModified.getTime() !== this.lastModified.getTime()) {
58
this.ui.writeLine('config modified; old=%s; new=%s', this.lastModified, newLastModified);
59
this.lastModified = newLastModified;
60
this.notify();
0 commit comments