diff options
Diffstat (limited to 'api/routes')
-rw-r--r-- | api/routes/getZLatest/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/getZLatest/index.js b/api/routes/getZLatest/index.js index 3eeca81..4dc1899 100644 --- a/api/routes/getZLatest/index.js +++ b/api/routes/getZLatest/index.js @@ -9,7 +9,7 @@ const { spawn } = require('child_process'); * */ module.exports = (req, res) => { - const command = spawn("ak-get-latest"); + const command = spawn("ak-get-zlatest"); command.stdout.on("data", data => { res.send({zlatest:`${data}`}); }); |