<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kerl.git/bash_completion, branch master</title>
<subtitle>Easy building and installing of Erlang/OTP instances.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/'/>
<entry>
<title>Disable SC2207 for Bash completion (#296)</title>
<updated>2018-08-06T06:10:16+00:00</updated>
<author>
<name>Latchezar Tzvetkoff</name>
<email>tzvetkoff@users.noreply.github.com</email>
</author>
<published>2018-08-06T06:10:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=77c27ac999ed0f9bd013f5e2403233b9d31feafe'/>
<id>77c27ac999ed0f9bd013f5e2403233b9d31feafe</id>
<content type='text'>
SC2207 suggests to use `mapfile` or `read -a`.
`mapfile` was added in Bash 4, while `read -a` only reads the
first line from a file, so both are no go.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SC2207 suggests to use `mapfile` or `read -a`.
`mapfile` was added in Bash 4, while `read -a` only reads the
first line from a file, so both are no go.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Bash completion for Bash 3 (#295)</title>
<updated>2018-08-03T13:59:07+00:00</updated>
<author>
<name>Latchezar Tzvetkoff</name>
<email>tzvetkoff@users.noreply.github.com</email>
</author>
<published>2018-08-03T13:59:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=d05d48e071bf38943340dd9086f615eb7d37d5fb'/>
<id>d05d48e071bf38943340dd9086f615eb7d37d5fb</id>
<content type='text'>
Well, since Bash 3 lacks the `readarray` (`mapfile`), kerl's completion does not work - and, unfortunately, Яpple still ships Bash 3 as default shell on macOS.

In this change we directly assign the result of `compgen` to `COMPREPLY` instead of reading the output of `compgen` into a variable.

Tested on:
- 3.2.57(1)-release (macOS default)
- 4.4.23(1)-release (Homebrew)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Well, since Bash 3 lacks the `readarray` (`mapfile`), kerl's completion does not work - and, unfortunately, Яpple still ships Bash 3 as default shell on macOS.

In this change we directly assign the result of `compgen` to `COMPREPLY` instead of reading the output of `compgen` into a variable.

Tested on:
- 3.2.57(1)-release (macOS default)
- 4.4.23(1)-release (Homebrew)</pre>
</div>
</content>
</entry>
<entry>
<title>Testing odbc+wx on OTP 20.3 on a slim jessie (#271)</title>
<updated>2018-05-03T15:55:48+00:00</updated>
<author>
<name>Pierre Fenoll</name>
<email>pierrefenoll@gmail.com</email>
</author>
<published>2018-05-03T15:55:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=9c615ea9cc2723cae5d0c0bf9cc9965350afebe7'/>
<id>9c615ea9cc2723cae5d0c0bf9cc9965350afebe7</id>
<content type='text'>
* wx-20.3: seeing about kerl/kerl/issues/270

* wx-20.3: less failible test + less deps

* wx-20.3: move linux tests out of TravisCI into CircleCI

* wx-20.3: always use git backend (erlang.org is still down)

* wx-20.3: work around fact that erlang.org is down in .travis.yml

* wx-20.3: fix some things

* wx-20.3: looks like skipping happens too late

* Revert "wx-20.3: looks like skipping happens too late"

This reverts commit e0600cefa71760e9bd74e7efc37089d5d75e764e.

* wx-20.3: that should fix it

* wx-20.3: run shellcheck in circle, now travis is only about osx!

* wx-20.3: that did not fix it (cc @mrallen1)

* wx-20.3: shellcheck stable segfaults?

* wx-20.3: should fix shellcheck segfault

* SC1117: Backslash is literal in "\!". Prefer explicit escaping: "\\!".

Not sure about the csh one. @mcrallen1 you have a clue?

* wx-20.3: SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting).

* wx-20.3: SC2154: words is referenced but not assigned.

* wx-20.3: replace some double quotes with simple ones

* wx-20.3: ps not found on debian9!?

* wx-20.3: what now

* wx-20.3: lets try a later vsn

* wx-20.3: some cleaning up

* wx-20.3: YAML fun

* wx-20.3: wat
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* wx-20.3: seeing about kerl/kerl/issues/270

* wx-20.3: less failible test + less deps

* wx-20.3: move linux tests out of TravisCI into CircleCI

* wx-20.3: always use git backend (erlang.org is still down)

* wx-20.3: work around fact that erlang.org is down in .travis.yml

* wx-20.3: fix some things

* wx-20.3: looks like skipping happens too late

* Revert "wx-20.3: looks like skipping happens too late"

This reverts commit e0600cefa71760e9bd74e7efc37089d5d75e764e.

* wx-20.3: that should fix it

* wx-20.3: run shellcheck in circle, now travis is only about osx!

* wx-20.3: that did not fix it (cc @mrallen1)

* wx-20.3: shellcheck stable segfaults?

* wx-20.3: should fix shellcheck segfault

* SC1117: Backslash is literal in "\!". Prefer explicit escaping: "\\!".

Not sure about the csh one. @mcrallen1 you have a clue?

* wx-20.3: SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting).

* wx-20.3: SC2154: words is referenced but not assigned.

* wx-20.3: replace some double quotes with simple ones

* wx-20.3: ps not found on debian9!?

* wx-20.3: what now

* wx-20.3: lets try a later vsn

* wx-20.3: some cleaning up

* wx-20.3: YAML fun

* wx-20.3: wat
</pre>
</div>
</content>
</entry>
<entry>
<title>Extend bash completion for 'kerl path'</title>
<updated>2017-02-18T13:37:43+00:00</updated>
<author>
<name>sanmiguel</name>
<email>michael.coles@gmail.com</email>
</author>
<published>2017-02-18T13:37:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=0daeaa064d20dd3f72d4df6c105deba8e24c4543'/>
<id>0daeaa064d20dd3f72d4df6c105deba8e24c4543</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #46 from mryufeng/master</title>
<updated>2016-04-13T20:20:50+00:00</updated>
<author>
<name>Mark Allen</name>
<email>mrallen1@yahoo.com</email>
</author>
<published>2016-04-13T20:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=fc570610885090bf70579ed81eb6cbaff4df7e84'/>
<id>fc570610885090bf70579ed81eb6cbaff4df7e84</id>
<content type='text'>
make _get_comp_words_by_ref more strong</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
make _get_comp_words_by_ref more strong</pre>
</div>
</content>
</entry>
<entry>
<title>Fix most shellcheck warnings/errors</title>
<updated>2016-01-10T19:11:15+00:00</updated>
<author>
<name>Pierre Fenoll</name>
<email>pierrefenoll@gmail.com</email>
</author>
<published>2016-01-10T17:03:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=29d7e61222a231f8eaff3b294d0578a511f3f1c6'/>
<id>29d7e61222a231f8eaff3b294d0578a511f3f1c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make _get_comp_words_by_ref more strong</title>
<updated>2013-06-16T10:13:52+00:00</updated>
<author>
<name>yufeng</name>
<email>mryufeng@gmail.com</email>
</author>
<published>2013-06-16T10:13:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=5322e9fffaed11e84c545552c34e5d1d252ff7e0'/>
<id>5322e9fffaed11e84c545552c34e5d1d252ff7e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop agner support</title>
<updated>2012-12-02T19:26:22+00:00</updated>
<author>
<name>Yurii Rashkovskii</name>
<email>yrashk@gmail.com</email>
</author>
<published>2012-12-02T19:26:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=2146953c02fbc71cfeba20ac06d49d755a20a12b'/>
<id>2146953c02fbc71cfeba20ac06d49d755a20a12b</id>
<content type='text'>
Closes #32
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #32
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'kerl deploy' command to deploy an installation to a given host and directory</title>
<updated>2012-05-11T15:56:41+00:00</updated>
<author>
<name>Joseph Wayne Norton</name>
<email>norton@alum.mit.edu</email>
</author>
<published>2012-05-11T09:12:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=c46684b1550da8260c8d3d6329685cc9770d6cfe'/>
<id>c46684b1550da8260c8d3d6329685cc9770d6cfe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a bash_completion script for kerl</title>
<updated>2011-04-08T13:21:43+00:00</updated>
<author>
<name>Evax Software</name>
<email>contact@evax.fr</email>
</author>
<published>2011-04-08T13:21:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/kerl.git/commit/?id=a0706fe568012549772c6700ee3bfdee826cfb26'/>
<id>a0706fe568012549772c6700ee3bfdee826cfb26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
