summaryrefslogtreecommitdiffstats
path: root/server/lib/shell.js
diff options
context:
space:
mode:
authorJannik Schönartz2018-07-30 05:06:35 +0200
committerJannik Schönartz2018-07-30 05:06:35 +0200
commitce9a81e6361504ea68286cd9fda72391d0aaba12 (patch)
tree38f69c5e33960d8ac6357e2601c9f34b7afec831 /server/lib/shell.js
parent[webapp] delete placeholder modules (diff)
downloadbas-ce9a81e6361504ea68286cd9fda72391d0aaba12.tar.gz
bas-ce9a81e6361504ea68286cd9fda72391d0aaba12.tar.xz
bas-ce9a81e6361504ea68286cd9fda72391d0aaba12.zip
[server] Changed old modules to the new rounter restructure.
Diffstat (limited to 'server/lib/shell.js')
-rw-r--r--server/lib/shell.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/shell.js b/server/lib/shell.js
index 311af1d..e0782f1 100644
--- a/server/lib/shell.js
+++ b/server/lib/shell.js
@@ -4,7 +4,7 @@ var shell = require('shelljs')
var ipxeGIT = 'git://git.ipxe.org/ipxe.git'
module.exports = {
- buildIPXE: function (req, res) {
+ buildIpxe: function (req, res) {
if (!shell.which('git')) {
return res.status(500).send({ status: 'GIT_MISSING', error_message: 'Please install git on the server.' })
}