mirror of
https://github.com/spf13/cobra
synced 2024-11-24 22:57:12 +00:00
Fix escaping of % in bash code strings
This commit is contained in:
parent
966e6048eb
commit
a23d903a12
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ func preamble(out io.Writer, name string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
_, err = fmt.Fprintf(out, `
|
||||
_, err = fmt.Fprint(out, `
|
||||
__debug()
|
||||
{
|
||||
if [[ -n ${BASH_COMP_DEBUG_FILE} ]]; then
|
||||
|
|
Loading…
Reference in a new issue