From 11d38df23c069e3e039cd4919327c8e494f030a1 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sat, 30 Sep 2023 03:29:45 +0300 Subject: Renamed ak-get-latest to ak-get-zlatest --- api/routes/getZLatest/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api/routes') 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}`}); }); -- cgit v1.2.3