aboutsummaryrefslogtreecommitdiff
path: root/api/routes/getZLatest/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/getZLatest/index.js')
-rw-r--r--api/routes/getZLatest/index.js2
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}`});
});