Skip to content

Commit

Permalink
Flatten: Improve spfcache.json instructions (StackExchange#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Limoncelli authored and captncraig committed Jul 24, 2018
1 parent df190a6 commit 9c692be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/normalize/flatten.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func flattenSPFs(cfg *models.DNSConfig) []error {
if err := cache.Save("spfcache.updated.json"); err != nil {
errs = append(errs, err)
} else {
errs = append(errs, Warning{errors.Errorf("%d spf record lookups are out of date with cache (%s).\nWrote changes to spfcache.updated.json. Please rename and commit:\n $ mv spfcache.updated.json spfcache.json\n $ git commit spfcache.json", len(changed), strings.Join(changed, ","))})
errs = append(errs, Warning{errors.Errorf("%d spf record lookups are out of date with cache (%s).\nWrote changes to spfcache.updated.json. Please rename and commit:\n $ mv spfcache.updated.json spfcache.json\n $ git commit -m'Update spfcache.json' spfcache.json", len(changed), strings.Join(changed, ","))})
}
}
}
Expand Down

0 comments on commit 9c692be

Please # to comment.