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

github.com/guysoft/OctoPi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Sheffer <guysoft@gmail.com>2019-06-24 16:44:19 +0300
committerGuy Sheffer <guysoft@gmail.com>2019-06-24 16:44:19 +0300
commit7ae5fcb998fc8b6016b53e7bfc1a82ecf27b21d6 (patch)
treeb1a48eea12feb82f75982ea45c36140b91bb19c9
parentf44bfe13a5460b53aa766683bb105e5c48b56556 (diff)
Add buster in nightly script
-rw-r--r--src/nightly_build_scripts/generate_nightly_page.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nightly_build_scripts/generate_nightly_page.js b/src/nightly_build_scripts/generate_nightly_page.js
index 3e0f519..2d25ceb 100644
--- a/src/nightly_build_scripts/generate_nightly_page.js
+++ b/src/nightly_build_scripts/generate_nightly_page.js
@@ -167,14 +167,14 @@ var outputPage = function(files, s) {
output.write("<h2 id='rpi'>Raspberry Pi</h2>\n");
output.write("<h3 id='rpi-stable'>Stable Builds</h3>\n")
- outputTable(filterNameByRegex(files, /^stable\/.*octopi-(wheezy|jessie|stretch)-.*/),
+ outputTable(filterNameByRegex(files, /^stable\/.*octopi-(wheezy|jessie|stretch|buster)-.*/),
output,
function(name) { return stripLeading(name, "stable/") },
3);
output.write("<h3 id='rpi-nightly'>Nightly Builds</h3>\n");
output.write("<small>Warning: These builds are untested and can be unstable and/or broken. If in doubt use a stable build.</small>");
- outputTable(filterNameByRegex(files.filter(function (obj) { return !obj.name.startsWith("stable/") && !obj.name.startsWith("bananapi-m1/") }), /octopi-(wheezy|jessie|stretch)-/),
+ outputTable(filterNameByRegex(files.filter(function (obj) { return !obj.name.startsWith("stable/") && !obj.name.startsWith("bananapi-m1/") }), /octopi-(wheezy|jessie|stretch|buster)-/),
output,
function(name) { return name },
14);