mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-11 05:54:10 +01:00
Fix typo
This commit is contained in:
parent
d9013cab5f
commit
521d625aac
|
|
@ -259,7 +259,7 @@ func findHTMLDiffer() (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
differ := path.Join(wd, "htmldiff.pl")
|
differ := path.Join(wd, "htmldiff.pl")
|
||||||
if _, err := os.Stat(differ); err != nil {
|
if _, err := os.Stat(differ); err == nil {
|
||||||
return differ, nil
|
return differ, nil
|
||||||
}
|
}
|
||||||
return "", fmt.Errorf("unable to find htmldiff.pl")
|
return "", fmt.Errorf("unable to find htmldiff.pl")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue