Skip to content

Commit

Permalink
fix: update permissions on fifo to allow write premissions for all us…
Browse files Browse the repository at this point in the history
…ers (#13073)
  • Loading branch information
colesnodgrass committed Jul 12, 2024
1 parent 29c1dd2 commit 9728165
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
USES_STDIN=USES_STDIN_VALUE

mkfifo STDOUT_PIPE_FILE_VALUE
chmod 666 STDOUT_PIPE_FILE_VALUE
mkfifo STDERR_PIPE_FILE_VALUE
chmod 666 STDERR_PIPE_FILE_VALUE

if [ "$USES_STDIN" = true ]; then
mkfifo STDIN_PIPE_FILE_VALUE
chmod 666 STDIN_PIPE_FILE_VALUE
fi

ITERATION=0
Expand Down

0 comments on commit 9728165

Please sign in to comment.