itsManjeet commented on issue #1779:
URL: https://github.com/apache/buildstream/issues/1779#issuecomment-1291781193
`> /dev/tty` to `> /dev/stderr` reports the issue with `xz` because command
`which` is missing and its doing something i don't know what to generate xz
command
```shell
if ! which "xz" > /dev/null 2>&1; then
decompressDir=`mktemp -d "$TMPDIR/makeself.XXXXXXXX" 2> /dev/null`
decompress="$decompressDir/xz"
(cd "$location"; catDecompress) > "$decompress"
chmod +x "$decompress"
PATH="$decompressDir:$PATH"
trap cleanupDecompress EXIT
fi
```
Anyways now I happy that the issue is not in my buildstream configurations
but in the packages and ugly .run script.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]