Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala')
-rw-r--r--src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala b/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
index 3a4bbcc..65803c1 100644
--- a/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
+++ b/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
@@ -22,7 +22,7 @@ object ModifiedFilesAuditor {
val cssModified = filepaths.exists{ _.isDistCss }
val lessModified = filepaths.exists{ _.isSourceLess }
if (cssModified && !lessModified) {
- Some("[Changes must be made to the original Less source code file(s), not just the compiled CSS file(s).](https://github.com/cvrebert/rorschach/blob/master/docs/css.md)")
+ Some("[Changes must be made to the original Less source code file(s), not just the compiled CSS file(s).](https://github.com/twbs/rorschach/blob/master/docs/css.md)")
}
else {
None
@@ -36,7 +36,7 @@ object ModifiedFilesAuditor {
val distJsModified = filepaths.exists{ _.isDistJs }
val sourceJsModified = filepaths.exists{ _.isSourceJs }
if (distJsModified && !sourceJsModified) {
- Some("[Changes must be made to the original JS source code file(s), not just the generated concatenated JS file(s).](https://github.com/cvrebert/rorschach/blob/master/docs/js.md)")
+ Some("[Changes must be made to the original JS source code file(s), not just the generated concatenated JS file(s).](https://github.com/twbs/rorschach/blob/master/docs/js.md)")
}
else {
None
@@ -45,7 +45,7 @@ object ModifiedFilesAuditor {
private def auditCname(filepaths: Set[String]): Option[String] = {
if (filepaths.contains("CNAME")) {
- Some("[The `CNAME` file should never be modified.](https://github.com/cvrebert/rorschach/blob/master/docs/cname.md)")
+ Some("[The `CNAME` file should never be modified.](https://github.com/twbs/rorschach/blob/master/docs/cname.md)")
}
else {
None