From c5ec4477a422aa6568a8efecfc00e537c6e37a8e Mon Sep 17 00:00:00 2001 From: Fierelier Date: Tue, 20 Aug 2024 13:58:29 +0200 Subject: [PATCH] Set cli to false to hide output --- kp2xml-to-prpwxml | 1 + 1 file changed, 1 insertion(+) diff --git a/kp2xml-to-prpwxml b/kp2xml-to-prpwxml index abd99d1..894bea9 100755 --- a/kp2xml-to-prpwxml +++ b/kp2xml-to-prpwxml @@ -4,6 +4,7 @@ basepath = (debug.getinfo(1, "S").source:sub(2):match("(.*[/\\])") or "./"):sub( local function main(arg) package.path = basepath .. "/lib/?.lua;" .. basepath .. "/lib/?/main.lua;" .. package.path require("prpw") + env.cli = false local inputf = arg[1] local outputf = arg[2] local parseFile = require('xmllpegparser').parseFile