fix(display): custom program file handling

This commit is contained in:
2025-12-03 17:29:45 +01:00
parent df1ea7b163
commit cfb26a0b47
4 changed files with 67 additions and 50 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ func RunShellCommandNonBlocking(cmd *exec.Cmd) CommandResponse {
cmd.Stderr = &stderr
cmd.Start()
ctx, cancel := context.WithTimeout(context.Background(), 200*time.Millisecond)
ctx, cancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
defer cancel()
done := make(chan error, 1)