diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-09-30 03:29:45 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-09-30 03:29:45 +0300 |
commit | 11d38df23c069e3e039cd4919327c8e494f030a1 (patch) | |
tree | ecb98532edfea8bae6a4c60d02d02d5d37e3772c /api/routes | |
parent | 9ef57d6e987dc15c02a7cfec64834ebd9aed954f (diff) | |
download | arching-kaos-tools-11d38df23c069e3e039cd4919327c8e494f030a1.tar.gz arching-kaos-tools-11d38df23c069e3e039cd4919327c8e494f030a1.tar.bz2 arching-kaos-tools-11d38df23c069e3e039cd4919327c8e494f030a1.zip |
Renamed ak-get-latest to ak-get-zlatest
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}`}); }); |