From 6f3ca27ec2f77031ed67a1f97c31312a9381684b Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Thu, 10 Dec 2020 21:44:19 +0100 Subject: [PATCH] - luaserver: fix paths in small guide Signed-off-by: Thilo Graf --- src/system/luaserver.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/system/luaserver.cpp b/src/system/luaserver.cpp index 86369f2f2..6814ab0fb 100644 --- a/src/system/luaserver.cpp +++ b/src/system/luaserver.cpp @@ -21,8 +21,8 @@ #if 0 For testing try: -cat < /share/tuxbox/neutrino/luaplugins/test.lua -#!/bin/luaclient +cat < /usr/share/tuxbox/neutrino/luaplugins/test.lua +#!/usr/bin/luaclient for i,v in ipairs(arg) do print(tostring(i) .. "\t" .. tostring(v)) @@ -30,9 +30,9 @@ end return "ok" EOT -chmod +x /share/tuxbox/neutrino/luaplugins/test.lua +chmod +x /usr/share/tuxbox/neutrino/luaplugins/test.lua -/share/tuxbox/neutrino/luaplugins/test.lua a b c d +/usr/share/tuxbox/neutrino/luaplugins/test.lua a b c d #endif #include