mirror of
https://github.com/antos-rde/antos-backend.git
synced 2025-04-05 00:16:48 +02:00
fix: explicitly specified PATH envars in apigateway
All checks were successful
gitea-sync/antos-backend/pipeline/head This commit looks good
All checks were successful
gitea-sync/antos-backend/pipeline/head This commit looks good
This commit is contained in:
parent
fc557738db
commit
68ba457a74
@ -135,10 +135,11 @@ function SystemController:apigateway(...)
|
|||||||
if ulib.exists(home.."/.local/bin") then
|
if ulib.exists(home.."/.local/bin") then
|
||||||
paths = paths..home.."/.local/bin:"
|
paths = paths..home.."/.local/bin:"
|
||||||
end
|
end
|
||||||
local envar = ulib.getenv("PATH")
|
--local envar = ulib.getenv("PATH")
|
||||||
if envar then
|
--if envar then
|
||||||
paths = paths..envar
|
-- paths = paths..envar
|
||||||
end
|
--end
|
||||||
|
paths = paths.."/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/bin"
|
||||||
ulib.setenv("PATH", paths,1)
|
ulib.setenv("PATH", paths,1)
|
||||||
end
|
end
|
||||||
-- run the code as user
|
-- run the code as user
|
||||||
|
Loading…
x
Reference in New Issue
Block a user