realtime-neil
realtime-neil
@bazulay your shell quoting is wrong. If you're going to store commands as shell-quoted strings, then consider https://www.etalabs.net/sh_tricks.html, specifically the section on "Shell-quoting arbitrary strings".
@ankitpokhrel here's decent explanation about which characters are "allowed" by the `C` locale: > The C locale is a special locale that is meant to be the simplest locale. You...
@ankitpokhrel `jira issue list` is also affected: ``` $ LC_ALL=C jira issue list --plain | tr -d '\000-\177' | wc 0 0 42 ```
@ankitpokhrel what are you using for terminal discovery? The first thing I found was this: https://github.com/golang/term Do you have `--plain` printing isolated to a certain place in the source code?...
@ankitpokhrel could you help me understand how this is an "enhancement" and not a "defect"?
@ankitpokhrel this is not blocking anything. There is a work-around; i.e., pass `--plain` when executing `jira` without a `tty`. This functionality to detect a terminal on stdin/stdout is however, present...
@ankitpokhrel How do you feel about the following proposals: * `--plain` should always force `jira` to write "plain text" to `stdout` * `--plain` should always force `jira` to ignore any...
Yikes. Okay, I'm remembering #238 and looking at these... * https://manpages.debian.org/buster/tar/tar.1.en.html * https://www.freebsd.org/cgi/man.cgi?query=tar * https://boxmatrix.info/wiki/Property:tar ...and I'm wondering what The Right Thing to do is.
This is not the first time the limitations of busybox tools have affected makeself. Readers will recall the problem with busybox `dd` in #161 .
@megastep this can probably be fixed this like you did in #228; i.e., testing that `tar` supports the `--posix` flag before attempting to use it. Although, this re-introduces the problem...