Update to RedBrick 2.5.2

This commit is contained in:
Dorian Niemiec 2023-12-31 21:25:10 +01:00
parent 088f56b01d
commit 542d8fa8c5
3 changed files with 9 additions and 4 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
commit.sh

View file

@ -13,7 +13,13 @@ try {
} catch (ex) { } catch (ex) {
// Can't determine version // Can't determine version
} }
var configJSONS = JSON.parse(fs.readFileSync(__dirname + "/../../../config.json")); // Read configuration JSON var configJSONS = {};
try {
configJSONS = JSON.parse(fs.readFileSync(__dirname + "/../../../config.json")); // Read configuration JSON
} catch(ex) {
//RedBrick will not care about configJSONS in SVR.JS 3.x and newer
//SVR.JS 2.x and older will fail to start with broken configuration file anyway...
}
var exttointerpreteruser = {}; var exttointerpreteruser = {};
var scriptExts = []; var scriptExts = [];

View file

@ -1,4 +1,4 @@
{ {
"name": "DorianTech RedBrick CGI engine for SVR.JS", "name": "RedBrick CGI engine for SVR.JS",
"version": "2.5.1" "version": "2.5.2"
} }