From 37b9bdbfc6a6b6ced40436c91d3d50e0c8028726 Mon Sep 17 00:00:00 2001 From: nrew225 Date: Mon, 24 Oct 2016 19:14:28 -0700 Subject: [PATCH 1/2] fix brimir --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce30d733..89b11d12 100644 --- a/README.md +++ b/README.md @@ -1016,7 +1016,7 @@ See https://staticsitegenerators.net and https://www.staticgen.com *See also [Task management/To-do lists](#task-managementto-do-lists) and [Project Management](#project-management)* - * [Brimir](https://getbrimir.com/) - Simple and clean open-source ticket manager written in Ruby on Rails. ([So urce Code](https://github.com/ivaldi/brimir)) `AGPLv3` `Ruby` + * [Brimir](https://getbrimir.com/) - Simple and clean open-source ticket manager written in Ruby on Rails. ([Source Code](https://github.com/ivaldi/brimir)) `AGPLv3` `Ruby` * [Bugzilla](https://www.bugzilla.org/) - General-purpose bugtracker and testing tool originally developed and used by the Mozilla project. `MPLv2` `Perl` * [Bumpy Booby](http://bumpy-booby.derivoile.fr/) - A simple, responsive and highly customizable PHP bug tracking system. ([Source Code](https://github.com/piero-la-lune/Bumpy-Booby)) `MIT` `PHP` * [Cerb](http://www.cerberusweb.com/) - Group-based e-mail management project. ([Source Code](https://github.com/wgm/cerb)) `DPL` `PHP` From a3ba5ed901fc76f42b59aca5dbf30572090c4142 Mon Sep 17 00:00:00 2001 From: nrew225 Date: Mon, 24 Oct 2016 19:39:35 -0700 Subject: [PATCH 2/2] test exit properly --- test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.js b/test.js index b38d4753..1a83fed1 100644 --- a/test.js +++ b/test.js @@ -27,10 +27,12 @@ function entryErrorCheck(md) { if (entryArray[i].pass == true) { totalPass += 1; //console.log(i + 1 + ". Pass: " + entryArray[i].name); + process.exit(0); } else { console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name); //console.log(entries[i]); totalFail += 1; + process.exit(1); } } }