aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-07-18 08:27:21 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-07-18 08:27:21 +0300
commit3cafdfccc39c0493ac95ae88cf7d0dd1dd58d28b (patch)
tree2e131b27112d82897d7313d90b48ae098b43eaa6 /api
parentce5081ad8d5b089e45788c4294546b942f3d8cb0 (diff)
downloadarching-kaos-tools-3cafdfccc39c0493ac95ae88cf7d0dd1dd58d28b.tar.gz
arching-kaos-tools-3cafdfccc39c0493ac95ae88cf7d0dd1dd58d28b.tar.bz2
arching-kaos-tools-3cafdfccc39c0493ac95ae88cf7d0dd1dd58d28b.zip
bugfix from refactoring
Diffstat (limited to 'api')
-rw-r--r--api/routes/getSLatest/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/getSLatest/index.js b/api/routes/getSLatest/index.js
index 72005b6..3f400fa 100644
--- a/api/routes/getSLatest/index.js
+++ b/api/routes/getSLatest/index.js
@@ -6,7 +6,7 @@ const { spawn } = require('child_process');
* sorry I was laughing at the term.. superchain
*/
function getSLatest(req, res) {
- const command = spawn("ak-schain-latest-cached");
+ const command = spawn("ak-schain",["-l"]);
response_string = "";
command.stdout.on("data", data => {
response_string = response_string + data;