fix typo
This commit is contained in:
parent
996074e431
commit
c8bd10a855
@ -450,7 +450,11 @@ const assignOperationToFileInplace = (
|
|||||||
// 0. find anything inconsistent
|
// 0. find anything inconsistent
|
||||||
if (r.existLocal && (r.mtimeLocal === undefined || r.mtimeLocal <= 0)) {
|
if (r.existLocal && (r.mtimeLocal === undefined || r.mtimeLocal <= 0)) {
|
||||||
throw Error(
|
throw Error(
|
||||||
`Error: Anormal last modified time locally: ${JSON.stringify(r, null, 2)}`
|
`Error: Abnormal last modified time locally: ${JSON.stringify(
|
||||||
|
r,
|
||||||
|
null,
|
||||||
|
2
|
||||||
|
)}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (r.existRemote && (r.mtimeRemote === undefined || r.mtimeRemote <= 0)) {
|
if (r.existRemote && (r.mtimeRemote === undefined || r.mtimeRemote <= 0)) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user