<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/test/cmd, branch 1.1.13</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>Fix the 'export PATH' message in `link` for a keg-only formula</title>
<updated>2017-04-02T03:12:00+00:00</updated>
<author>
<name>Eugene Nikolsky</name>
</author>
<published>2017-04-02T02:00:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=edd9a9717cf08eabb54001679653e37732d5ce2d'/>
<id>edd9a9717cf08eabb54001679653e37732d5ce2d</id>
<content type='text'>
Commit 4cae6a724e6d684eb157dd6d7328755694f228b2 introduced the message,
but it printed the wrong path, e.g. for `brew link sqlite`:

```
If you need to have this software first in your PATH instead consider running:
  echo 'export PATH="/usr/local/opt/sqlite:$PATH"' &gt;&gt; ~/.zshrc/bin
```

where `/bin` is appended at the end, but should be inserted before
`:$PATH`: `echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' &gt;&gt; ~/.zshrc`.
This patch fixes that and updates a test to verify it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Commit 4cae6a724e6d684eb157dd6d7328755694f228b2 introduced the message,
but it printed the wrong path, e.g. for `brew link sqlite`:

```
If you need to have this software first in your PATH instead consider running:
  echo 'export PATH="/usr/local/opt/sqlite:$PATH"' &gt;&gt; ~/.zshrc/bin
```

where `/bin` is appended at the end, but should be inserted before
`:$PATH`: `echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' &gt;&gt; ~/.zshrc`.
This patch fixes that and updates a test to verify it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add pinned version to outdated json output</title>
<updated>2017-03-27T10:41:08+00:00</updated>
<author>
<name>William Roe</name>
</author>
<published>2017-03-27T10:41:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=996dcdee2cacdfee90602387d5c5142d749f00de'/>
<id>996dcdee2cacdfee90602387d5c5142d749f00de</id>
<content type='text'>
The structure should be consistent, so there are always pinned and
pinned_version fields even if there are no pinned versions for a given formula.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The structure should be consistent, so there are always pinned and
pinned_version fields even if there are no pinned versions for a given formula.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add pinned version to outdated output</title>
<updated>2017-03-27T10:30:36+00:00</updated>
<author>
<name>William Roe</name>
</author>
<published>2017-03-27T10:30:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=70446d9112c0d42ca1ab469af07716bb7281169e'/>
<id>70446d9112c0d42ca1ab469af07716bb7281169e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for verbose brew outdated output</title>
<updated>2017-03-27T10:27:48+00:00</updated>
<author>
<name>William Roe</name>
</author>
<published>2017-03-27T10:27:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=755d43d46dc20b9e646909e08de482141de83777'/>
<id>755d43d46dc20b9e646909e08de482141de83777</id>
<content type='text'>
Split the tests up into quiet and verbose output with contexts.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Split the tests up into quiet and verbose output with contexts.
</pre>
</div>
</content>
</entry>
<entry>
<title>cmd/log: improve output messaging.</title>
<updated>2017-03-20T16:20:31+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-03-18T14:57:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=623c95b3f8660d5c77936483ec9b9a4db16aff00'/>
<id>623c95b3f8660d5c77936483ec9b9a4db16aff00</id>
<content type='text'>
This wasn’t adapted to the new, multiple repository world.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This wasn’t adapted to the new, multiple repository world.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: fix tests with a shallow clone.</title>
<updated>2017-03-10T16:16:01+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-03-10T16:16:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=0e30d34d272cbec3ed6b07eebc4c9fcbb3189317'/>
<id>0e30d34d272cbec3ed6b07eebc4c9fcbb3189317</id>
<content type='text'>
In this case `HOMEBREW_VERSION` is `&gt;1.1.0 (no git repository)` so these
tests failed. This was the cause of the Homebrew/homebrew-test-bot
Linux CI failures as it was testing a shallow clone.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In this case `HOMEBREW_VERSION` is `&gt;1.1.0 (no git repository)` so these
tests failed. This was the cause of the Homebrew/homebrew-test-bot
Linux CI failures as it was testing a shallow clone.
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence `cmd/cask` test.</title>
<updated>2017-03-05T16:11:46+00:00</updated>
<author>
<name>Markus Reiter</name>
</author>
<published>2017-03-05T16:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=3b74c69c130dc4f56b8118b0f2ebd144e410677a'/>
<id>3b74c69c130dc4f56b8118b0f2ebd144e410677a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `mktmpdir` helper method.</title>
<updated>2017-02-28T14:06:32+00:00</updated>
<author>
<name>Markus Reiter</name>
</author>
<published>2017-02-28T13:50:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=a5549023804a8cef50f71dc2d7a723be8e83f3d1'/>
<id>a5549023804a8cef50f71dc2d7a723be8e83f3d1</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 #2208 from reitermarkus/spec-uninstall</title>
<updated>2017-02-27T15:49:13+00:00</updated>
<author>
<name>Markus Reiter</name>
</author>
<published>2017-02-27T15:49:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=2a750619b96c744961584bd40996ecb5c94fca3c'/>
<id>2a750619b96c744961584bd40996ecb5c94fca3c</id>
<content type='text'>
Convert `brew uninstall` test to spec.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert `brew uninstall` test to spec.</pre>
</div>
</content>
</entry>
<entry>
<title>Convert `brew commands` test to spec.</title>
<updated>2017-02-27T14:26:56+00:00</updated>
<author>
<name>Markus Reiter</name>
</author>
<published>2017-02-27T14:21:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=125abd228cba009a1fc9c29b626f6ce0fdfc91ff'/>
<id>125abd228cba009a1fc9c29b626f6ce0fdfc91ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
