sys.run()/run_rc() discard io.popen() handle's close() exit status #58
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#58
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
sys.lua'srun()andrun_rc()both discard the return value ofp:close():For a
popen()handle,close()'s return value reports theunderlying process's exit status (similar to
pclose()). This isparticularly relevant for
run(), whose public contract only everreturns stdout -- a command that fails (non-zero exit) but still
produces some stdout output currently returns that stdout as success,
with no way for the caller to detect the failure.
run_rc()already captures the exit code explicitly via theprintf ... $?marker trick, so this is less pressing there, butclose()'s own result is still unchecked/unused in both functions.Found while reviewing the daw_i18n/v1 migration of sys.lua
(DAW/daw-lua-common#48). Not an i18n issue, out of scope for #48.
Scope
exit status (this would be a behavior/API change, needs discussion)
given it already has the exit code from the marker
Related
DAW/daw-lua-common#48